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

17 lines
223 B
Text
Raw Normal View History

2020-01-21 05:24:32 -05:00
process bwa_index {
tag "$fasta"
2020-01-21 05:24:32 -05:00
container 'quay.io/biocontainers/bwa:0.7.17--hed695b0_7'
input:
path fasta
2020-01-21 05:24:32 -05:00
output:
path "${fasta}.*"
2020-01-21 05:24:32 -05:00
script:
"""
bwa index ${fasta}
"""
2020-07-11 07:42:13 -04:00
}