File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -524,6 +524,8 @@ workflow CHIPSEQ {
524524 //
525525 // MODULE: MultiQC
526526 //
527+ ch_multiqc_report = Channel . empty()
528+
527529 if (! params. skip_multiqc) {
528530 ch_multiqc_config = Channel . fromPath(" $projectDir /assets/multiqc_config.yml" , checkIfExists : true )
529531 ch_multiqc_custom_config = params. multiqc_config ? Channel . fromPath( params. multiqc_config ): Channel . empty()
@@ -578,7 +580,8 @@ workflow CHIPSEQ {
578580 ch_multiqc_report = MULTIQC . out. report
579581 }
580582
581- 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
582585 versions = ch_versions // channel: [ path(versions.yml) ]
583586
584587}
You can’t perform that action at this time.
0 commit comments