mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 02:58:17 +00:00
adjusted the bed variable name
This commit is contained in:
parent
f6262b4a10
commit
1b63d03f8e
1 changed files with 2 additions and 2 deletions
|
@ -10,7 +10,7 @@ process RTGTOOLS_VCFEVAL {
|
|||
input:
|
||||
tuple val(meta), path(query_vcf), path(query_vcf_tbi)
|
||||
tuple path(truth_vcf), path(truth_vcf_tbi)
|
||||
path(bed)
|
||||
path(truth_regions)
|
||||
path(sdf)
|
||||
|
||||
output:
|
||||
|
@ -23,7 +23,7 @@ process RTGTOOLS_VCFEVAL {
|
|||
script:
|
||||
def args = task.ext.args ?: ''
|
||||
def prefix = task.ext.prefix ?: "${meta.id}"
|
||||
def regions = bed ? "--bed-regions=$bed" : ""
|
||||
def regions = truth_regions ? "--bed-regions=$truth_regions" : ""
|
||||
def truth_index = truth_vcf_tbi ? "" : "rtg index $truth_vcf"
|
||||
def query_index = query_vcf_tbi ? "" : "rtg index $query_vcf"
|
||||
|
||||
|
|
Loading…
Reference in a new issue