27 lines
576 B
Text
27 lines
576 B
Text
process CLIQUESNV {
|
|
tag "${prefix}"
|
|
label 'process_high'
|
|
|
|
container 'quay.io/biocontainers/cliquesnv:2.0.3--hdfd78af_0'
|
|
|
|
input:
|
|
tuple val(prefix), path(bam), path(bai)
|
|
val(method)
|
|
|
|
output:
|
|
tuple val(prefix), path("*.json")
|
|
tuple val(prefix), path("*.fasta")
|
|
|
|
publishDir "results/${task.process}", mode: 'copy'
|
|
|
|
script:
|
|
def jmemstring = task.memory.toMega() + 'M'
|
|
"""
|
|
cliquesnv \\
|
|
-Xmx${jmemstring} \\
|
|
-threads ${task.cpus} \\
|
|
-m '${method}' \\
|
|
-in "${bam}" \\
|
|
-outDir .
|
|
"""
|
|
}
|