2021-09-13 15:04:14 +00:00
|
|
|
process GATK4_GETPILEUPSUMMARIES {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_low'
|
|
|
|
|
2021-11-11 07:58:59 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::gatk4=4.2.3.0" : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
|
|
'https://depot.galaxyproject.org/singularity/gatk4:4.2.3.0--hdfd78af_0' :
|
|
|
|
'quay.io/biocontainers/gatk4:4.2.3.0--hdfd78af_0' }"
|
2021-09-13 15:04:14 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(bam), path(bai)
|
|
|
|
path variants
|
2021-11-15 16:49:20 +00:00
|
|
|
path variants_tbi
|
2021-09-13 15:04:14 +00:00
|
|
|
path sites
|
|
|
|
|
|
|
|
output:
|
|
|
|
tuple val(meta), path('*.pileups.table'), emit: table
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2021-09-13 15:04:14 +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-13 15:04:14 +00:00
|
|
|
def sitesCommand = ''
|
|
|
|
|
|
|
|
sitesCommand = sites ? " -L ${sites} " : " -L ${variants} "
|
|
|
|
|
2021-12-07 14:22:24 +00:00
|
|
|
def avail_mem = 3
|
|
|
|
if (!task.memory) {
|
|
|
|
log.info '[GATK GetPileupSummaries] Available memory not known - defaulting to 3GB. Specify process memory requirements to change this.'
|
|
|
|
} else {
|
|
|
|
avail_mem = task.memory.giga
|
|
|
|
}
|
2021-09-13 15:04:14 +00:00
|
|
|
"""
|
2021-12-07 14:22:24 +00:00
|
|
|
gatk --java-options "-Xmx${avail_mem}g" GetPileupSummaries \\
|
2021-09-13 15:04:14 +00:00
|
|
|
-I $bam \\
|
|
|
|
-V $variants \\
|
|
|
|
$sitesCommand \\
|
|
|
|
-O ${prefix}.pileups.table \\
|
2021-11-26 07:58:40 +00:00
|
|
|
$args
|
2021-09-13 15:04:14 +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}":
|
|
|
|
gatk4: \$(echo \$(gatk --version 2>&1) | sed 's/^.*(GATK) v//; s/ .*\$//')
|
2021-09-27 08:41:24 +00:00
|
|
|
END_VERSIONS
|
2021-09-13 15:04:14 +00:00
|
|
|
"""
|
|
|
|
}
|