nf-core_modules/tools/htslib/tabix/main.nf
2020-01-23 11:35:49 +01:00

16 lines
225 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}
"""
}