Skip to content

Commit 674645e

Browse files
authored
Merge pull request #1463 from nf-core/oncomplete-fix-minimal
Move channel operations outside of the onComplete() block
2 parents 2986385 + 532497b commit 674645e

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

subworkflows/local/utils_nfcore_rnaseq_pipeline/main.nf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)