You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: main.nf
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -212,7 +212,7 @@ def helpMessage() {
212
212
--max_cpus Maximum number of CPUs to use for each step of the pipeline. Should be in form e.g. Default: '${params.max_cpus}'
213
213
--email Set this parameter to your e-mail address to get a summary e-mail with details of the run sent to you when the workflow exits
214
214
--plaintext_email Receive plain text emails rather than HTML
215
-
--maxMultiqcEmailFileSize Threshold size for MultiQC report to be attached in notification email. If file generated by pipeline exceeds the threshold, it will not be attached (Default: 25MB)
215
+
--max_multiqc_email_size Threshold size for MultiQC report to be attached in notification email. If file generated by pipeline exceeds the threshold, it will not be attached (Default: 25MB)
216
216
217
217
For a full list and more information of available parameters, consider the documentation (https://github.com/nf-core/eager/).
218
218
""".stripIndent()
@@ -2634,7 +2634,7 @@ process multiqc {
2634
2634
file workflow_summary from ch_workflow_summary.collectFile(name: "workflow_summary_mqc.yaml")
2635
2635
2636
2636
output:
2637
-
file "*multiqc_report.html" into multiqc_report
2637
+
file "*multiqc_report.html" into ch_multiqc_report
2638
2638
file "*_data"
2639
2639
2640
2640
script:
@@ -2725,7 +2725,11 @@ workflow.onComplete {
2725
2725
log.info "[nf-core/eager] Sent summary e-mail to $email_address (sendmail)"
0 commit comments