Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add fastp and ngsbits to multiqc input #647

Merged
merged 13 commits into from
Nov 15, 2024
3 changes: 3 additions & 0 deletions assets/multiqc_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ run_modules:
- qualimap
- picard
- mosdepth
- ngsbits
- peddy
- custom_content

Expand All @@ -38,6 +39,8 @@ module_order:
name: "fastp"
- mosdepth:
name: "Mosdepth"
- ngsbits:
name: "ngsbits"
- peddy:
name: "Peddy"

Expand Down
2 changes: 2 additions & 0 deletions workflows/raredisease.nf
Original file line number Diff line number Diff line change
Expand Up @@ -902,6 +902,8 @@ workflow RAREDISEASE {
)

ch_multiqc_files = ch_multiqc_files.mix(FASTQC.out.zip.collect{it[1]}.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([]))
ch_multiqc_files = ch_multiqc_files.mix(QC_BAM.out.hs_metrics.map{it[1]}.collect().ifEmpty([]))
ch_multiqc_files = ch_multiqc_files.mix(QC_BAM.out.qualimap_results.map{it[1]}.collect().ifEmpty([]))
Expand Down
Loading