2020-09-10 15:45:11 +00:00
|
|
|
// Import generic module functions
|
|
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
|
2020-10-14 17:59:25 +00:00
|
|
|
params.options = [:]
|
2021-03-15 12:16:43 +00:00
|
|
|
options = initOptions(params.options)
|
2020-10-14 17:59:25 +00:00
|
|
|
|
2020-09-10 15:45:11 +00:00
|
|
|
process PICARD_COLLECTMULTIPLEMETRICS {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_medium'
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
2020-10-14 17:59:25 +00:00
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:meta.id) }
|
2020-09-10 15:45:11 +00:00
|
|
|
|
2021-02-16 23:58:23 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::picard=2.23.9" : null)
|
2020-12-14 00:05:48 +00:00
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
|
|
container "https://depot.galaxyproject.org/singularity/picard:2.23.9--0"
|
|
|
|
} else {
|
|
|
|
container "quay.io/biocontainers/picard:2.23.9--0"
|
|
|
|
}
|
2020-09-10 15:45:11 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(bam)
|
|
|
|
path fasta
|
|
|
|
|
|
|
|
output:
|
|
|
|
tuple val(meta), path("*_metrics"), emit: metrics
|
|
|
|
tuple val(meta), path("*.pdf") , emit: pdf
|
|
|
|
path "*.version.txt" , emit: version
|
|
|
|
|
|
|
|
script:
|
|
|
|
def software = getSoftwareName(task.process)
|
2020-10-14 17:59:25 +00:00
|
|
|
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
2020-09-10 15:45:11 +00:00
|
|
|
def avail_mem = 3
|
|
|
|
if (!task.memory) {
|
|
|
|
log.info '[Picard CollectMultipleMetrics] Available memory not known - defaulting to 3GB. Specify process memory requirements to change this.'
|
|
|
|
} else {
|
|
|
|
avail_mem = task.memory.giga
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
picard \\
|
|
|
|
-Xmx${avail_mem}g \\
|
|
|
|
CollectMultipleMetrics \\
|
2020-10-14 17:59:25 +00:00
|
|
|
$options.args \\
|
2020-09-10 15:45:11 +00:00
|
|
|
INPUT=$bam \\
|
|
|
|
OUTPUT=${prefix}.CollectMultipleMetrics \\
|
|
|
|
REFERENCE_SEQUENCE=$fasta
|
|
|
|
|
2020-10-19 14:17:19 +00:00
|
|
|
echo \$(picard CollectMultipleMetrics --version 2>&1) | grep -o 'Version.*' | cut -f2- -d: > ${software}.version.txt
|
2020-09-10 15:45:11 +00:00
|
|
|
"""
|
|
|
|
}
|