Skip to content

Commit

Permalink
Merge pull request #1463 from nf-core/oncomplete-fix-minimal
Browse files Browse the repository at this point in the history
Move channel operations outside of the onComplete() block
  • Loading branch information
robsyme authored Dec 9, 2024
2 parents 2986385 + 532497b commit 674645e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Special thanks to the following for their contributions to the release:

- [PR #1369](https://github.com/nf-core/rnaseq/pull/1369) - Add umicollapse as an alternative to umi-tools
- [PR #1461](https://github.com/nf-core/rnaseq/pull/1461) - Add FASTQ linting during preprocessing
- [PR #1463](https://github.com/nf-core/rnaseq/pull/1463) - Move channel operations outside of the onComplete() block

### Software dependencies

Expand Down
4 changes: 3 additions & 1 deletion subworkflows/local/utils_nfcore_rnaseq_pipeline/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,8 @@ workflow PIPELINE_COMPLETION {
id, status -> pass_strand_check[id] = status
}

def multiqc_report_list = multiqc_report.toList()

//
// Completion email and summary
//
Expand All @@ -128,7 +130,7 @@ workflow PIPELINE_COMPLETION {
plaintext_email,
outdir,
monochrome_logs,
multiqc_report.toList()
multiqc_report_list.getVal()
)
}

Expand Down

0 comments on commit 674645e

Please sign in to comment.