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

17 lines
224 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}
"""
}