Skip to content

Commit 793fe48

Browse files
committed
update parameter name
1 parent 11b3d73 commit 793fe48

File tree

6 files changed

+28
-22
lines changed

6 files changed

+28
-22
lines changed

CHANGELOG.md

+10-4
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
- A new parameter `concatenate_snv_calls` to generate a concatenated VCF file containing unannotated nuclear & mitochondrial SNV calls [#699](https://github.com/nf-core/raredisease/pull/699)
1111
- Functionality to check contamination in samples using VerifyBamID2 [#701](https://github.com/nf-core/raredisease/pull/701)
12-
- New parameters `svd_bed`, `svd_mu`, and `svd_ud` to supply reference files for VerifyBamID2 [#701](https://github.com/nf-core/raredisease/pull/701)
12+
- New parameters `verifybamid_svd_bed`, `verifybamid_svd_mu`, and `verifybamid_svd_ud` to supply reference files for VerifyBamID2 [#701](https://github.com/nf-core/raredisease/pull/701)
1313

1414
### `Fixed`
1515

@@ -20,9 +20,15 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020
| Old parameter | New parameter |
2121
| ------------- | --------------------- |
2222
| | concatenate_snv_calls |
23-
| | svd_bed |
24-
| | svd_mu |
25-
| | svd_ud |
23+
| | verifybamid_svd_bed |
24+
| | verifybamid_svd_mu |
25+
| | verifybamid_svd_ud |
26+
27+
### Tool updates
28+
29+
| Tool | Old version | New version |
30+
| ------------ | ----------- | ----------- |
31+
| VerifyBamID2 | | 2.0.1 |
2632

2733
## 2.4.0 - Vitalstatistix [2025-02-24]
2834

docs/output.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ The FastQC plots displayed in the MultiQC report shows _untrimmed_ reads. They m
245245

246246
##### VerifyBamID2
247247

248-
[VerifyBamID2](https://github.com/Griffan/VerifyBamID) is used to analyse a bam file and generates a contamination report. The pipeline will only generate the following files when the parameters `svd_bed`, `svd_mu`, and `svd_ud` are provided.
248+
[VerifyBamID2](https://github.com/Griffan/VerifyBamID) is used to analyse a bam file and generates a contamination report. The pipeline will only generate the following files when the parameters `verifybamid_svd_bed`, `verifybamid_svd_mu`, and `verifybamid_svd_ud` are provided.
249249

250250
<details markdown="1">
251251
<summary>Output files</summary>

docs/usage.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -189,14 +189,14 @@ The mandatory and optional parameters for each category are tabulated below.
189189

190190
##### 2. QC stats from the alignment files
191191

192-
| Mandatory | Optional |
193-
| ------------------------------------------------------------ | ------------------- |
194-
| intervals_wgs<sup>1</sup> | |
195-
| intervals_y<sup>1</sup> | |
196-
| target_bed / (bait_intervals & target_intervals)<sup>2</sup> | |
197-
| | svd_bed<sup>3</sup> |
198-
| | svd_mu<sup>3</sup> |
199-
| | svd_ud<sup>3</sup> |
192+
| Mandatory | Optional |
193+
| ------------------------------------------------------------ | ------------------------------- |
194+
| intervals_wgs<sup>1</sup> | |
195+
| intervals_y<sup>1</sup> | |
196+
| target_bed / (bait_intervals & target_intervals)<sup>2</sup> | |
197+
| | verifybamid_svd_bed<sup>3</sup> |
198+
| | verifybamid_svd_mu<sup>3</sup> |
199+
| | verifybamid_svd_ud<sup>3</sup> |
200200

201201
<sup>1</sup>These files are Picard's style interval list files, comprising the entire genome or only the chromosome Y. A version of these files for GRCh37 and for GRCh38 is supplied in the pipeline assets. These files are not necessary if you are using Sentieon.<br />
202202
<sup>2</sup> If a target_bed file is provided, bait_intervals and target_intervals can be generated by the pipeline.<br />

nextflow.config

+3-3
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,6 @@ params {
8686
score_config_snv = null
8787
score_config_sv = null
8888
sdf = null
89-
svd_bed = null
90-
svd_mu = null
91-
svd_ud = null
9289
svdb_query_bedpedbs = null
9390
svdb_query_dbs = null
9491
target_bed = null
@@ -97,6 +94,9 @@ params {
9794
variant_consequences_sv = null
9895
vep_filters = null
9996
vep_filters_scout_fmt = null
97+
verifybamid_svd_bed = null
98+
verifybamid_svd_mu = null
99+
verifybamid_svd_ud = null
100100
vcf2cytosure_blacklist = null
101101
vcfanno_extra_resources = null
102102
vcfanno_resources = null

nextflow_schema.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -410,21 +410,21 @@
410410
"help_text": "Optional file to rename sample ids in the vcf2cytosure vcf",
411411
"pattern": "^\\S+\\.csv$"
412412
},
413-
"svd_bed": {
413+
"verifybamid_svd_bed": {
414414
"type": "string",
415415
"exists": true,
416416
"format": "file-path",
417417
"description": "Path to a BED file containing markers used by verifybamid2.",
418418
"fa_icon": "fas fa-file-csv"
419419
},
420-
"svd_mu": {
420+
"verifybamid_svd_mu": {
421421
"type": "string",
422422
"exists": true,
423423
"format": "file-path",
424424
"description": "Path to mean matrix file of genotype matrix. Used by verifybamid2.",
425425
"fa_icon": "fas fa-file-csv"
426426
},
427-
"svd_ud": {
427+
"verifybamid_svd_ud": {
428428
"type": "string",
429429
"exists": true,
430430
"format": "file-path",

workflows/raredisease.nf

+3-3
Original file line numberDiff line numberDiff line change
@@ -305,11 +305,11 @@ workflow RAREDISEASE {
305305
: Channel.empty()
306306
ch_sv_bedpedbs = params.svdb_query_bedpedbs ? Channel.fromPath(params.svdb_query_bedpedbs)
307307
: Channel.empty()
308-
ch_svd_bed = params.svd_bed ? Channel.fromPath(params.svd_bed)
308+
ch_svd_bed = params.verifybamid_svd_bed ? Channel.fromPath(params.verifybamid_svd_bed)
309309
: Channel.empty()
310-
ch_svd_mu = params.svd_mu ? Channel.fromPath(params.svd_mu)
310+
ch_svd_mu = params.verifybamid_svd_mu ? Channel.fromPath(params.verifybamid_svd_mu)
311311
: Channel.empty()
312-
ch_svd_ud = params.svd_ud ? Channel.fromPath(params.svd_ud)
312+
ch_svd_ud = params.verifybamid_svd_ud ? Channel.fromPath(params.verifybamid_svd_ud)
313313
: Channel.empty()
314314
ch_target_bed = ch_references.target_bed
315315
ch_target_intervals = ch_references.target_intervals

0 commit comments

Comments
 (0)