File tree 3 files changed +7
-2
lines changed
nf_core/pipeline-template
subworkflows/local/utils_nfcore_pipeline_pipeline
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 62
62
- Update pre-commit hook astral-sh/ruff-pre-commit to v0.8.2 ([ #3325 ] ( https://github.com/nf-core/tools/pull/3325 ) )
63
63
- Make CLI prompt less nf-core specific ([ #3326 ] ( https://github.com/nf-core/tools/pull/3326 ) )
64
64
- Update gitpod vscode extensions to use nf-core extension pack ([ #3327 ] ( https://github.com/nf-core/tools/pull/3327 ) )
65
+ - Remove toList() channel operation from inside onComplete block ([ #3304 ] ( https://github.com/nf-core/tools/pull/3304 ) )
65
66
66
67
## [ v3.0.2 - Titanium Tapir Patch] ( https://github.com/nf-core/tools/releases/tag/3.0.2 ) - [ 2024-10-11]
67
68
Original file line number Diff line number Diff line change 28
28
},
29
29
"utils_nfcore_pipeline" : {
30
30
"branch" : " master" ,
31
- "git_sha" : " 9a1e8bb6a5d205cf7807dcefca872a3314b2f3e6 " ,
31
+ "git_sha" : " 85400682a2abac63b09c863c138e91e5df7236b5 " ,
32
32
"installed_by" : [" subworkflows" ]
33
33
}{% if nf_schema % },
34
34
"utils_nfschema_plugin" : {
Original file line number Diff line number Diff line change @@ -140,6 +140,10 @@ workflow PIPELINE_COMPLETION {
140
140
summary_params = [:]
141
141
{%- endif % }
142
142
143
+ {%- if multiqc % }
144
+ def multiqc_reports = multiqc_report. toList()
145
+ {%- endif % }
146
+
143
147
//
144
148
// Completion email and summary
145
149
//
@@ -153,7 +157,7 @@ workflow PIPELINE_COMPLETION {
153
157
plaintext_email,
154
158
outdir,
155
159
monochrome_logs,
156
- {% if multiqc % }multiqc_report . toList() {% else % }[]{% endif % }
160
+ {% if multiqc % }multiqc_reports . getVal(), {% else % }[]{% endif % }
157
161
)
158
162
}
159
163
{%- endif % }
You can’t perform that action at this time.
0 commit comments