File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
subworkflows/local/utils_nfcore_rnaseq_pipeline Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ Special thanks to the following for their contributions to the release:
1616
1717- [ PR #1369 ] ( https://github.com/nf-core/rnaseq/pull/1369 ) - Add umicollapse as an alternative to umi-tools
1818- [ PR #1461 ] ( https://github.com/nf-core/rnaseq/pull/1461 ) - Add FASTQ linting during preprocessing
19+ - [ PR #1463 ] ( https://github.com/nf-core/rnaseq/pull/1463 ) - Move channel operations outside of the onComplete() block
1920
2021### Software dependencies
2122
Original file line number Diff line number Diff line change @@ -116,6 +116,8 @@ workflow PIPELINE_COMPLETION {
116116 id, status -> pass_strand_check[id] = status
117117 }
118118
119+ def multiqc_report_list = multiqc_report. toList()
120+
119121 //
120122 // Completion email and summary
121123 //
@@ -128,7 +130,7 @@ workflow PIPELINE_COMPLETION {
128130 plaintext_email,
129131 outdir,
130132 monochrome_logs,
131- multiqc_report . toList ()
133+ multiqc_report_list . getVal ()
132134 )
133135 }
134136
You can’t perform that action at this time.
0 commit comments