Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions modules/nf-core/sentieon/gvcftyper/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ process SENTIEON_GVCFTYPER {
task.ext.when == null || task.ext.when

script:
def args = task.ext.args ?: ''
def prefix = task.ext.prefix ?: "${meta.id}_genotyped"
def gvcfs_input = '-v ' + gvcfs.join(' -v ')
def dbsnp_cmd = dbsnp ? "--dbsnp ${dbsnp}" : ""
Expand All @@ -38,6 +39,7 @@ process SENTIEON_GVCFTYPER {
-r ${fasta} \\
${interval_command} \\
--algo GVCFtyper \\
${args} \\
${gvcfs_input} \\
${dbsnp_cmd} \\
${prefix}.vcf.gz
Expand Down