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

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