2021-10-07 12:55:06 +00:00
|
|
|
process GATK4_LEARNREADORIENTATIONMODEL {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_low'
|
|
|
|
|
2022-02-15 10:29:36 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::gatk4=4.2.5.0" : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
2022-02-15 10:29:36 +00:00
|
|
|
'https://depot.galaxyproject.org/singularity/gatk4:4.2.5.0--hdfd78af_0' :
|
|
|
|
'quay.io/biocontainers/gatk4:4.2.5.0--hdfd78af_0' }"
|
2021-10-07 12:55:06 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(f1r2)
|
|
|
|
|
|
|
|
output:
|
|
|
|
tuple val(meta), path("*.tar.gz"), emit: artifactprior
|
|
|
|
path "versions.yml" , emit: versions
|
|
|
|
|
2022-02-04 08:53:32 +00:00
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
2021-10-07 12:55:06 +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}"
|
2022-04-12 15:15:39 +00:00
|
|
|
def input_list = f1r2.collect{"--input $it"}.join(' ')
|
|
|
|
|
2021-12-07 14:22:24 +00:00
|
|
|
def avail_mem = 3
|
|
|
|
if (!task.memory) {
|
|
|
|
log.info '[GATK LearnReadOrientationModel] Available memory not known - defaulting to 3GB. Specify process memory requirements to change this.'
|
|
|
|
} else {
|
|
|
|
avail_mem = task.memory.giga
|
|
|
|
}
|
2021-10-07 12:55:06 +00:00
|
|
|
"""
|
2022-04-12 15:15:39 +00:00
|
|
|
gatk --java-options "-Xmx${avail_mem}g" LearnReadOrientationModel \\
|
|
|
|
$input_list \\
|
|
|
|
--output ${prefix}.tar.gz \\
|
|
|
|
--tmp-dir . \\
|
2021-11-26 07:58:40 +00:00
|
|
|
$args
|
2021-10-07 12:55:06 +00:00
|
|
|
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
2021-11-26 07:58:40 +00:00
|
|
|
"${task.process}":
|
|
|
|
gatk4: \$(echo \$(gatk --version 2>&1) | sed 's/^.*(GATK) v//; s/ .*\$//')
|
2021-10-07 12:55:06 +00:00
|
|
|
END_VERSIONS
|
|
|
|
"""
|
|
|
|
}
|