We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ac08ad commit 12766cdCopy full SHA for 12766cd
nextflow.config
@@ -339,6 +339,14 @@ manifest {
339
// Nextflow plugins
340
plugins {
341
id '[email protected]' // Validation of pipeline parameters and creation of an input channel from a sample sheet
342
+ id '[email protected]' // Calculate the carbon footprint of a Nextflow pipeline
343
+}
344
+
345
+// CO2 footprint calculation
346
+co2footprint {
347
+ traceFile = "${params.outdir}/pipeline_info/co2footprint_trace_${params.trace_report_suffix}.txt"
348
+ reportFile = "${params.outdir}/pipeline_info/co2footprint_report_${params.trace_report_suffix}.html"
349
+ summaryFile = "${params.outdir}/pipeline_info/co2footprint_summary_${params.trace_report_suffix}.txt"
350
}
351
352
validation {
0 commit comments