Skip to content

Commit

Permalink
Merge branch 'cw-5355' into 'dev'
Browse files Browse the repository at this point in the history
Further simplify humvar in MinKNOW [CW-5355]

See merge request epi2melabs/workflows/wf-human-variation!348
  • Loading branch information
SamStudio8 committed Nov 28, 2024
2 parents ed0dd05 + 193e1e3 commit 99aa46f
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Reconciled workflow with wf-template v5.3.1
- Update Spectre to v0.3.2, which includes support for calling CNVs in hg19 data.
- ClinVar version in SnpEff container updated to version 20241103.
- Hidden additional options in MinKNOW for a simplified user experience.
### Added
- `--spectre_args` may be used to provide custom arguments to the Spectre process.
### Fixed
Expand Down
18 changes: 14 additions & 4 deletions nextflow_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,12 @@
"type": "boolean",
"default": false,
"description": "Perform phasing.",
"help_text": "This option enables phasing of SV, SNP and modifications, depending on which sub-workflow has been chosen; see [README](README.md#9-phasing-variants) for more details."
"help_text": "This option enables phasing of SV, SNP and modifications, depending on which sub-workflow has been chosen; see [README](README.md#9-phasing-variants) for more details.",
"overrides": {
"minknow": {
"default": true
}
}
},
"include_all_ctgs": {
"type": "boolean",
Expand All @@ -252,15 +257,20 @@
"help_text": "Enabling this option will call for variants on all contigs of the input reference sequence. Typically this option is not required as standard human reference sequences contain decoy and unplaced contigs that are usually omitted for the purpose of variant calling. This option might be useful for non-standard reference sequence databases.",
"overrides": {
"minknow": {
"title": "Include all contigs"
"hidden": true
}
}
},
"output_gene_summary": {
"type": "boolean",
"default": false,
"description": "If set to true, the workflow will generate gene-level coverage summaries.",
"help_text": "If set to true, a 4-column BED file must be supplied, where column 4 is the gene label. The workflow will generate a list of all genes in the BED and their percentage coverage at a range of thresholds (1x, 10x, 15x, 20x, and 30x), as well as the average coverage of each gene."
"help_text": "If set to true, a 4-column BED file must be supplied, where column 4 is the gene label. The workflow will generate a list of all genes in the BED and their percentage coverage at a range of thresholds (1x, 10x, 15x, 20x, and 30x), as well as the average coverage of each gene.",
"overrides": {
"minknow": {
"hidden": true
}
}
},
"output_report": {
"type": "boolean",
Expand Down Expand Up @@ -548,7 +558,7 @@
],
"overrides": {
"minknow": {
"title": "Sex (XX or XY) to be passed to Straglr-genotype."
"hidden": true
}
}
}
Expand Down

0 comments on commit 99aa46f

Please sign in to comment.