mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 13:23:09 +00:00
16 lines
223 B
Text
16 lines
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}
|
||
|
"""
|
||
|
}
|