mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 11:08:17 +00:00
Update modules/rtgtools/vcfeval/main.nf
Co-authored-by: Matthias De Smet <11850640+matthdsm@users.noreply.github.com>
This commit is contained in:
parent
7fc4cc5a38
commit
d3927aae99
1 changed files with 2 additions and 2 deletions
|
@ -33,8 +33,8 @@ process RTGTOOLS_VCFEVAL {
|
||||||
def prefix = task.ext.prefix ?: "${meta.id}"
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
||||||
def bed_regions = truth_regions ? "--bed-regions=$truth_regions" : ""
|
def bed_regions = truth_regions ? "--bed-regions=$truth_regions" : ""
|
||||||
def eval_regions = evaluation_regions ? "--evaluation-regions=$evaluation_regions" : ""
|
def eval_regions = evaluation_regions ? "--evaluation-regions=$evaluation_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"
|
||||||
|
|
||||||
"""
|
"""
|
||||||
$truth_index
|
$truth_index
|
||||||
|
|
Loading…
Reference in a new issue