mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
16 lines
236 B
Text
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}
|
|
"""
|
|
}
|