2020-09-10 15:09:54 +00:00
|
|
|
// Import generic module functions
|
|
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
|
2020-10-14 17:29:50 +00:00
|
|
|
params.options = [:]
|
|
|
|
def options = initOptions(params.options)
|
|
|
|
|
2020-09-10 15:09:54 +00:00
|
|
|
process UMITOOLS_DEDUP {
|
|
|
|
tag "$meta.id"
|
|
|
|
label "process_medium"
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
2020-10-14 17:29:50 +00:00
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:meta.id) }
|
2020-09-10 15:09:54 +00:00
|
|
|
|
2020-10-14 17:29:50 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::umi_tools=1.0.1" : null)
|
|
|
|
if (workflow.containerEngine == 'singularity' && !params.pull_docker_container) {
|
|
|
|
container "https://depot.galaxyproject.org/singularity/umi_tools:1.0.1--py37h516909a_1"
|
|
|
|
} else {
|
|
|
|
container "quay.io/biocontainers/umi_tools:1.0.1--py37h516909a_1"
|
|
|
|
}
|
2020-09-10 15:09:54 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(bam), path(bai)
|
2020-10-14 17:29:50 +00:00
|
|
|
|
2020-09-10 15:09:54 +00:00
|
|
|
output:
|
|
|
|
tuple val(meta), path("*.bam"), emit: bam
|
|
|
|
tuple val(meta), path("*.tsv"), emit: tsv
|
|
|
|
path "*.version.txt" , emit: version
|
|
|
|
|
|
|
|
script:
|
|
|
|
def software = getSoftwareName(task.process)
|
2020-10-14 17:29:50 +00:00
|
|
|
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
2020-09-10 15:09:54 +00:00
|
|
|
"""
|
|
|
|
umi_tools dedup \\
|
|
|
|
-I $bam \\
|
|
|
|
-S ${prefix}.bam \\
|
|
|
|
--output-stats=$prefix \\
|
2020-10-14 17:29:50 +00:00
|
|
|
$options.args \\
|
2020-09-10 15:09:54 +00:00
|
|
|
|
|
|
|
umi_tools --version | sed -e "s/UMI-tools version: //g" > ${software}.version.txt
|
|
|
|
"""
|
|
|
|
}
|