mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
16 lines
225 B
Text
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}
|
|
"""
|
|
}
|