nf-core_modules/deprecated/bwa/index/main.nf
2020-08-05 16:09:25 +01:00

16 lines
223 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}
"""
}