We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents daadac3 + a90d020 commit 73a5304Copy full SHA for 73a5304
workflows/chipseq.nf
@@ -524,6 +524,8 @@ workflow CHIPSEQ {
524
//
525
// MODULE: MultiQC
526
527
+ ch_multiqc_report = Channel.empty()
528
+
529
if (!params.skip_multiqc) {
530
ch_multiqc_config = Channel.fromPath("$projectDir/assets/multiqc_config.yml", checkIfExists: true)
531
ch_multiqc_custom_config = params.multiqc_config ? Channel.fromPath( params.multiqc_config ): Channel.empty()
@@ -578,7 +580,8 @@ workflow CHIPSEQ {
578
580
ch_multiqc_report = MULTIQC.out.report
579
581
}
582
- emit:multiqc_report = MULTIQC.out.report.toList() // channel: /path/to/multiqc_report.html
583
+ emit:
584
+ multiqc_report = ch_multiqc_report.toList() // channel: /path/to/multiqc_report.html
585
versions = ch_versions // channel: [ path(versions.yml) ]
586
587
0 commit comments