Skip to content

Commit 646a2a7

Browse files
authored
Merge branch 'dev' into csi
2 parents caaf0a4 + 0537a1e commit 646a2a7

File tree

7 files changed

+33
-642
lines changed

7 files changed

+33
-642
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
88
### `Added`
99

1010
- [#175](https://github.com/nf-core/phaseimpute/pull/175) - Add support for all input files in `.json` or `.yaml` format.
11+
- [#181](https://github.com/nf-core/phaseimpute/pull/181) - Add nf-co2footprint plugin to the config file.
1112
- [#184](https://github.com/nf-core/phaseimpute/pull/184) - Add support `.csi` index for `.bam` files.
1213

1314
### `Changed`
@@ -21,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2122

2223
- [#166](https://github.com/nf-core/phaseimpute/pull/166) - Fix depth type to `number` to enable float.
2324
- [#179](https://github.com/nf-core/phaseimpute/pull/179) - Fix VCF usage in `GLIMPSE2`.
25+
- [#183](https://github.com/nf-core/phaseimpute/pull/183) - Remove wrongfully added files in `BAM_EXTRACT_REGION_SAMTOOLS`.
2426

2527
## v1.0.0 - Black Labrador [2024-12-09]
2628

docs/output.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,8 +210,8 @@ Results generated by MultiQC collate pipeline QC from supported tools e.g. FastQ
210210
- `pipeline_info/`
211211
- Reports generated by Nextflow: `execution_report.html`, `execution_timeline.html`, `execution_trace.txt` and `pipeline_dag.dot`/`pipeline_dag.svg`.
212212
- Reports generated by the pipeline: `pipeline_report.html`, `pipeline_report.txt` and `software_versions.yml`. The `pipeline_report*` files will only be present if the `--email` / `--email_on_fail` parameter's are used when running the pipeline.
213-
- Reformatted samplesheet files used as input to the pipeline: `samplesheet.valid.csv`.
214213
- Parameters used by the pipeline run: `params.json`.
214+
- Report generated by [`nf-co2footprint`](https://nextflow-io.github.io/nf-co2footprint/): `co2footprint_trace.txt`, `co2footprint_summary.txt` and `co2footprint_report`.html.
215215

216216
</details>
217217

nextflow.config

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,14 @@ manifest {
339339
// Nextflow plugins
340340
plugins {
341341
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"
342350
}
343351

344352
validation {

subworkflows/local/bam_extract_region_samtools/main.nf.test

Lines changed: 0 additions & 118 deletions
This file was deleted.

0 commit comments

Comments
 (0)