mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
16 lines
No EOL
223 B
Text
16 lines
No EOL
223 B
Text
process bwa_index {
|
|
tag {fasta}
|
|
|
|
container 'quay.io/biocontainers/bwa:0.7.17--hed695b0_7'
|
|
|
|
input:
|
|
path(fasta)
|
|
|
|
output:
|
|
path("${fasta}.*")
|
|
|
|
script:
|
|
"""
|
|
bwa index ${fasta}
|
|
"""
|
|
} |