nf-core_modules/software/bwa/index/main.nf
2020-07-11 14:27:21 +02:00

16 lines
224 B
Text

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