Skip to content

Commit

Permalink
added haplocheck to multiqc
Browse files Browse the repository at this point in the history
  • Loading branch information
fevac committed Jan 14, 2025
1 parent da6ee67 commit 456964f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions assets/multiqc_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ export_plots: true
run_modules:
- fastqc
- fastp
- haplocheck
- qualimap
- picard
- mosdepth
Expand All @@ -39,6 +40,8 @@ module_order:
name: "fastp"
- mosdepth:
name: "Mosdepth"
- haplocheck:
name: "haplocheck"
- ngsbits:
name: "ngsbits"
- peddy:
Expand Down
2 changes: 2 additions & 0 deletions subworkflows/local/call_snv.nf
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@ workflow CALL_SNV {
)
ch_mt_vcf = POSTPROCESS_MT_CALLS.out.vcf
ch_mt_tabix = POSTPROCESS_MT_CALLS.out.tbi
ch_mt_txt = CALL_SNV_MT.out.txt
ch_versions = ch_versions.mix(CALL_SNV_MT.out.versions)
ch_versions = ch_versions.mix(CALL_SNV_MT_SHIFT.out.versions)
ch_versions = ch_versions.mix(POSTPROCESS_MT_CALLS.out.versions)
Expand All @@ -146,5 +147,6 @@ workflow CALL_SNV {
genome_gtabix = ch_gtabix // channel: [ val(meta), path(gtbi) ]
mt_vcf = ch_mt_vcf // channel: [ val(meta), path(vcf) ]
mt_tabix = ch_mt_tabix // channel: [ val(meta), path(tbi) ]
mt_txt = ch_mt_txt // channel: [ val(meta), path(txt) ]
versions = ch_versions // channel: [ path(versions.yml) ]
}
1 change: 1 addition & 0 deletions workflows/raredisease.nf
Original file line number Diff line number Diff line change
Expand Up @@ -916,6 +916,7 @@ workflow RAREDISEASE {
)

ch_multiqc_files = ch_multiqc_files.mix(FASTQC.out.zip.collect{it[1]}.ifEmpty([]))
ch_multiqc_files = ch_multiqc_files.mix(CALL_SNV.out.mt_txt.map{it[1]}.collect().ifEmpty([]))
ch_multiqc_files = ch_multiqc_files.mix(ALIGN.out.fastp_json.map{it[1]}.collect().ifEmpty([]))
ch_multiqc_files = ch_multiqc_files.mix(QC_BAM.out.sex_check.map{it[1]}.collect().ifEmpty([]))
ch_multiqc_files = ch_multiqc_files.mix(QC_BAM.out.multiple_metrics.map{it[1]}.collect().ifEmpty([]))
Expand Down

0 comments on commit 456964f

Please sign in to comment.