mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
17 lines
239 B
Text
17 lines
239 B
Text
|
process samtools_faidx {
|
||
|
tag {fasta}
|
||
|
|
||
|
container 'quay.io/biocontainers/samtools:1.9--h10a08f8_12'
|
||
|
|
||
|
input:
|
||
|
path(fasta)
|
||
|
|
||
|
output:
|
||
|
path("${fasta}.fai")
|
||
|
|
||
|
script:
|
||
|
"""
|
||
|
samtools faidx ${fasta}
|
||
|
"""
|
||
|
}
|