nf-core_modules/deprecated/htslib/tabix/main.nf
2020-08-05 16:09:25 +01:00

16 lines
224 B
Text

process htslib_tabix {
tag "$vcf"
container 'quay.io/biocontainers/tabix:0.2.6--ha92aebf_0'
input:
path vcf
output:
path "${vcf}.tbi"
script:
"""
tabix -p vcf ${vcf}
"""
}