mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2025-01-10 23:59:39 -05:00
Changed tbi as optional output in GATK4 HaplotypeCaller (#1576)
* Changed tbi as optional output. HC cannot index a VCF from large chromosomes. * Apply suggestions from code review * Update modules/gatk4/haplotypecaller/main.nf Co-authored-by: Maxime U. Garcia <maxime.garcia@scilifelab.se>
This commit is contained in:
parent
1b5d3f5ac2
commit
68f1c27169
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ process GATK4_HAPLOTYPECALLER {
|
||||||
|
|
||||||
output:
|
output:
|
||||||
tuple val(meta), path("*.vcf.gz"), emit: vcf
|
tuple val(meta), path("*.vcf.gz"), emit: vcf
|
||||||
tuple val(meta), path("*.tbi") , emit: tbi
|
tuple val(meta), path("*.tbi") , optional:true, emit: tbi
|
||||||
path "versions.yml" , emit: versions
|
path "versions.yml" , emit: versions
|
||||||
|
|
||||||
when:
|
when:
|
||||||
|
|
Loading…
Reference in a new issue