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

16 lines
236 B
Text

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