mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
23 lines
582 B
Text
23 lines
582 B
Text
|
process samtools_index {
|
||
|
tag "${bam.baseName}"
|
||
|
|
||
|
container: 'quay.io/biocontainers/samtools:1.9--h10a08f8_12'
|
||
|
|
||
|
input:
|
||
|
set file(bam)
|
||
|
|
||
|
output:
|
||
|
file "*.sorted.bam"
|
||
|
|
||
|
script:
|
||
|
def suff_mem = ("${(task.memory.toBytes() - 6000000000) / task.cpus}" > 2000000000) ? 'true' : 'false'
|
||
|
def avail_mem = (task.memory && suff_mem) ? "-m" + "${(task.memory.toBytes() - 6000000000) / task.cpus}" : ''
|
||
|
"""
|
||
|
samtools sort $bam \\
|
||
|
-@ ${task.cpus} ${avail_mem} \\
|
||
|
-o ${bam.baseName}.sorted.bam
|
||
|
|
||
|
samtools --version &> v_samtools.txt
|
||
|
"""
|
||
|
}
|