2020-09-10 15:09:54 +00:00
|
|
|
// Import generic module functions
|
|
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
|
|
|
|
process RSEQC_READDUPLICATION {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_medium'
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:options, publish_dir:getSoftwareName(task.process), publish_id:meta.id) }
|
|
|
|
|
2020-10-12 15:04:04 +00:00
|
|
|
container "quay.io/biocontainers/rseqc:4.0.0--py38h0213d0e_0"
|
|
|
|
//container "https://depot.galaxyproject.org/singularity/rseqc:4.0.0--py38h0213d0e_0"
|
2020-09-10 15:09:54 +00:00
|
|
|
|
2020-10-12 15:04:04 +00:00
|
|
|
conda (params.conda ? "bioconda::rseqc=4.0.0" : null)
|
2020-09-10 15:09:54 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(bam)
|
|
|
|
val options
|
|
|
|
|
|
|
|
output:
|
|
|
|
tuple val(meta), path("*seq.DupRate.xls"), emit: seq_xls
|
|
|
|
tuple val(meta), path("*pos.DupRate.xls"), emit: pos_xls
|
|
|
|
tuple val(meta), path("*.pdf") , emit: pdf
|
|
|
|
tuple val(meta), path("*.r") , emit: rscript
|
|
|
|
path "*.version.txt" , emit: version
|
|
|
|
|
|
|
|
script:
|
|
|
|
def software = getSoftwareName(task.process)
|
|
|
|
def ioptions = initOptions(options)
|
|
|
|
def prefix = ioptions.suffix ? "${meta.id}${ioptions.suffix}" : "${meta.id}"
|
|
|
|
"""
|
|
|
|
read_duplication.py \\
|
|
|
|
-i $bam \\
|
|
|
|
-o $prefix \\
|
|
|
|
$ioptions.args
|
|
|
|
|
|
|
|
read_duplication.py --version | sed -e "s/read_duplication.py //g" > ${software}.version.txt
|
|
|
|
"""
|
|
|
|
}
|