mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 11:08: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:
|
input:
|
||||||
tuple val(meta), path(query_vcf), path(query_vcf_tbi)
|
tuple val(meta), path(query_vcf), path(query_vcf_tbi)
|
||||||
tuple path(truth_vcf), path(truth_vcf_tbi)
|
tuple path(truth_vcf), path(truth_vcf_tbi)
|
||||||
path(bed)
|
path(truth_regions)
|
||||||
path(sdf)
|
path(sdf)
|
||||||
|
|
||||||
output:
|
output:
|
||||||
|
@ -23,7 +23,7 @@ process RTGTOOLS_VCFEVAL {
|
||||||
script:
|
script:
|
||||||
def args = task.ext.args ?: ''
|
def args = task.ext.args ?: ''
|
||||||
def prefix = task.ext.prefix ?: "${meta.id}"
|
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 truth_index = truth_vcf_tbi ? "" : "rtg index $truth_vcf"
|
||||||
def query_index = query_vcf_tbi ? "" : "rtg index $query_vcf"
|
def query_index = query_vcf_tbi ? "" : "rtg index $query_vcf"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue