Skip to content

Commit

Permalink
Move channel operations outside of the onComplete() block
Browse files Browse the repository at this point in the history
  • Loading branch information
robsyme committed Dec 5, 2024
1 parent 2986385 commit 9b62f06
Showing 1 changed file with 3 additions and 1 deletion.
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 9b62f06

Please sign in to comment.