mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 11:08:17 +00:00
Adding tbi-files to the output from GATK4_MERGEVCFS. #1709
This commit is contained in:
parent
3bb32b2def
commit
5513d095f5
2 changed files with 7 additions and 0 deletions
|
@ -13,6 +13,7 @@ process GATK4_MERGEVCFS {
|
||||||
|
|
||||||
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
|
||||||
path "versions.yml" , emit: versions
|
path "versions.yml" , emit: versions
|
||||||
|
|
||||||
when:
|
when:
|
||||||
|
|
|
@ -35,6 +35,12 @@ output:
|
||||||
type: file
|
type: file
|
||||||
description: merged vcf file
|
description: merged vcf file
|
||||||
pattern: "*.vcf.gz"
|
pattern: "*.vcf.gz"
|
||||||
|
- tbi:
|
||||||
|
type: file
|
||||||
|
description: index files for the merged vcf files
|
||||||
|
pattern: "*.tbi"
|
||||||
|
|
||||||
|
|
||||||
- versions:
|
- versions:
|
||||||
type: file
|
type: file
|
||||||
description: File containing software versions
|
description: File containing software versions
|
||||||
|
|
Loading…
Reference in a new issue