nf-core_modules/tools/bwa/index/main.nf

16 lines
223 B
Text
Raw Normal View History

2020-01-21 10:24:32 +00:00
process bwa_index {
tag {fasta}
container 'quay.io/biocontainers/bwa:0.7.17--hed695b0_7'
input:
path(fasta)
output:
path("${fasta}.*")
script:
"""
bwa index ${fasta}
"""
}