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
* move the filter outside of the annotations
* no longer use permissive overlaps in vcfanno
* fix tests
* update changelog and docs
* fix linting
* make toml channel a value channel
* Update CHANGELOG.md
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
21
21
6. Removed the old output publishing code and used the new workflow output definitions instead
22
22
7. Bumped the minimal nextflow version to 24.10.0
23
23
8. VCFanno will now run when `--vcfanno_toml` has been given and `--annotate` has not been given. You still need to supply `--annotate` to get the full annotation, but this can be used check for common variants without having to perform full annotation.
24
-
9. Removed the `--delly_sv_types` parameter.
24
+
9. Changed the `--annotations_filter` parameter to a `--filter` parameter. This parameter takes an argument of `bcftools filter` to filter the resulting VCFs.
Copy file name to clipboardExpand all lines: docs/parameters.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -80,7 +80,7 @@ Options specific to the execution of this pipeline
80
80
|`cnv_callers_support`| The minimum amount of CNV callers that should detect a variant. All variants that have a lower amount of callers supporting it, will be removed. (Only used when more than one caller is given) |`integer`| 1 |||
81
81
|`annotate`| Run the annotation with Ensembl VEP and AnnotSV (and optionally VCFanno). |`boolean`||||
82
82
|`concat_output`| Also output a concatenated VCF with all variant types analysed included. |`boolean`||||
83
-
|`annotations_filter`| The filter arguments to use after annotating. <details><summary>Help</summary><small>A common use case for this is to filter out common variants. You can supply a VCF file with common variants to VCFanno and filter out the matching variants using this parameter</small></details>|`string`||||
83
+
|`filter`| The filter options to perform on SV and CNV VCF files as postprocessing <details><summary>Help</summary><small>A common use case for this is to filter out common variants. You can supply a VCF file with common variants to VCFanno and filter out the matching variants using this parameter</small></details> |`string`||||
Copy file name to clipboardExpand all lines: nextflow_schema.json
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -331,9 +331,9 @@
331
331
"type": "boolean",
332
332
"description": "Also output a concatenated VCF with all variant types analysed included."
333
333
},
334
-
"annotations_filter": {
334
+
"filter": {
335
335
"type": "string",
336
-
"description": "The filter arguments to use after annotating.",
336
+
"description": "The filter options to perform on SV and CNV VCF files as postprocessing",
337
337
"help_text": "A common use case for this is to filter out common variants. You can supply a VCF file with common variants to VCFanno and filter out the matching variants using this parameter"
0 commit comments