mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
17 lines
225 B
Text
17 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}
|
||
|
"""
|
||
|
}
|