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

17 lines
236 B
Text
Raw Normal View History

2020-07-14 15:10:23 +00:00
process bwa-mem2_index {
tag {fasta}
container 'quay.io/biocontainers/bwa-mem2:2.0--he513fc3_0'
input:
path(fasta)
output:
path("${fasta}.*")
script:
"""
bwa-mem2 index ${fasta}
"""
2020-07-14 15:19:12 +00:00
}