2021-09-22 12:31:01 +00:00
|
|
|
process GLNEXUS {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_medium'
|
|
|
|
|
|
|
|
conda (params.enable_conda ? "bioconda::glnexus=1.4.1" : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
|
|
'https://depot.galaxyproject.org/singularity/glnexus:1.4.1--h40d77a6_0' :
|
|
|
|
'quay.io/biocontainers/glnexus:1.4.1--h40d77a6_0' }"
|
2021-09-22 12:31:01 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(gvcfs)
|
|
|
|
|
|
|
|
output:
|
|
|
|
tuple val(meta), path("*.bcf"), emit: bcf
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2021-09-22 12:31:01 +00:00
|
|
|
|
2022-02-04 08:53:32 +00:00
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
2021-09-22 12:31:01 +00:00
|
|
|
script:
|
2021-11-26 07:58:40 +00:00
|
|
|
def args = task.ext.args ?: ''
|
2021-12-02 12:39:55 +00:00
|
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
2021-09-22 12:31:01 +00:00
|
|
|
|
|
|
|
// Make list of GVCFs to merge
|
|
|
|
def input = gvcfs.collect { it.toString() }
|
|
|
|
def avail_mem = 3
|
|
|
|
if (!task.memory) {
|
|
|
|
log.info '[Glnexus] Available memory not known - defaulting to 3GB. Specify process memory requirements to change this.'
|
|
|
|
} else {
|
|
|
|
avail_mem = task.memory.giga
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
glnexus_cli \\
|
|
|
|
--threads $task.cpus \\
|
|
|
|
--mem-gbytes $avail_mem \\
|
2021-11-26 07:58:40 +00:00
|
|
|
$args \\
|
2021-09-22 12:31:01 +00:00
|
|
|
${input.join(' ')} \\
|
|
|
|
> ${prefix}.bcf
|
2021-09-28 19:42:04 +00:00
|
|
|
|
2021-09-27 08:41:24 +00:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
2021-11-26 07:58:40 +00:00
|
|
|
"${task.process}":
|
|
|
|
glnexus: \$( echo \$(glnexus_cli 2>&1) | head -n 1 | sed 's/^.*release v//; s/ .*\$//')
|
2021-09-27 08:41:24 +00:00
|
|
|
END_VERSIONS
|
2021-09-22 12:31:01 +00:00
|
|
|
"""
|
2022-03-28 15:48:39 +00:00
|
|
|
|
|
|
|
stub:
|
|
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
|
|
|
"""
|
|
|
|
touch ${prefix}.bcf
|
|
|
|
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
|
|
"${task.process}":
|
|
|
|
glnexus: \$( echo \$(glnexus_cli 2>&1) | head -n 1 | sed 's/^.*release v//; s/ .*\$//')
|
|
|
|
END_VERSIONS
|
|
|
|
"""
|
2021-09-22 12:31:01 +00:00
|
|
|
}
|