Skip to content

Commit

Permalink
Merge pull request #554 from nf-core/vcf_optional
Browse files Browse the repository at this point in the history
Make vcf generation optional
  • Loading branch information
rannick authored Nov 29, 2024
2 parents f35833b + 7e1fa66 commit 228f5f4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add nf-test to local module: `ENSEMBL_DOWNLOAD` [#539](https://github.com/nf-core/rnafusion/pull/539)
- Add nf-test to local module: `HGNC_DOWNLOAD` [#540](https://github.com/nf-core/rnafusion/pull/540)
- Add nf-test to nf-core module: `PICARD_COLLECTRNASEQMETRICS` and update module [#551](https://github.com/nf-core/rnafusion/pull/551)
- Add `--skip_vcf` boolean parameter to skip vcf file generation [#554](https://github.com/nf-core/rnafusion/pull/554)

### Changed

Expand Down
2 changes: 1 addition & 1 deletion conf/modules.config
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,6 @@ process {
}

withName: 'VCF_COLLECT' {
ext.when = {!params.fusioninspector_only}
ext.when = { {!params.fusioninspector_only} && {!params.skip_vcf} }
}
}
1 change: 1 addition & 0 deletions nextflow.config
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ params {
// Skip steps
skip_qc = false
skip_vis = false
skip_vcf = false

// Path to references
ensembl_ref = "${params.genomes_base}/ensembl"
Expand Down
4 changes: 4 additions & 0 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@
"skip_vis": {
"type": "boolean",
"description": "Skip visualisation steps"
},
"skip_vcf": {
"type": "boolean",
"description": "Skip vcf generation step"
}
},
"fa_icon": "fas fa-fast-forward"
Expand Down

0 comments on commit 228f5f4

Please sign in to comment.