Skip to content

Commit

Permalink
should emit either tbi or csi
Browse files Browse the repository at this point in the history
Same as PR #7385 -- deepvariant will switch to csi but this wasn't being handled, causing error
  • Loading branch information
tkchafin authored Jan 28, 2025
1 parent c807a63 commit 5f188bb
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions modules/nf-core/deepvariant/postprocessvariants/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,11 @@ process DEEPVARIANT_POSTPROCESSVARIANTS {
tuple val(meta4), path(gzi)

output:
tuple val(meta), path("${prefix}.vcf.gz") , emit: vcf
tuple val(meta), path("${prefix}.vcf.gz.tbi") , emit: vcf_tbi
tuple val(meta), path("${prefix}.g.vcf.gz") , emit: gvcf
tuple val(meta), path("${prefix}.g.vcf.gz.tbi"), emit: gvcf_tbi
tuple val(meta), path("${prefix}.vcf.gz") , emit: vcf
tuple val(meta), path("${prefix}.vcf.gz.{tbi,csi}") , emit: vcf_index
tuple val(meta), path("${prefix}.g.vcf.gz") , emit: gvcf
tuple val(meta), path("${prefix}.g.vcf.gz.{tbi,csi}") , emit: gvcf_index
path "versions.yml" , emit: versions

path "versions.yml", emit: versions

Expand Down

0 comments on commit 5f188bb

Please sign in to comment.