nf-core_modules/software/htslib/tabix/main.nf

17 lines
225 B
Text
Raw Normal View History

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}
"""
}