mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
GATK/Getpileupsummaries: If no intervals use variants instead (#1787)
If no intervals use variants instead
This commit is contained in:
parent
ecece498f1
commit
1ac223ad43
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ process GATK4_GETPILEUPSUMMARIES {
|
|||
script:
|
||||
def args = task.ext.args ?: ''
|
||||
def prefix = task.ext.prefix ?: "${meta.id}"
|
||||
def interval_command = intervals ? "--intervals $intervals" : ""
|
||||
def interval_command = intervals ? "--intervals $intervals" : "--intervals $variants"
|
||||
def reference_command = fasta ? "--reference $fasta" : ''
|
||||
|
||||
def avail_mem = 3
|
||||
|
|
Loading…
Reference in a new issue