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 RSEQC_INFEREXPERIMENT {
|
|
|
|
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::rseqc=3.0.1" : null)
|
|
|
|
if (workflow.containerEngine == 'singularity' && !params.pull_docker_container) {
|
|
|
|
container "https://depot.galaxyproject.org/singularity/rseqc:3.0.1--py37h516909a_1"
|
|
|
|
} else {
|
|
|
|
container "quay.io/biocontainers/rseqc:3.0.1--py37h516909a_1"
|
|
|
|
}
|
2020-09-10 15:09:54 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(bam)
|
|
|
|
path bed
|
2020-10-14 17:29:50 +00:00
|
|
|
|
2020-09-10 15:09:54 +00:00
|
|
|
output:
|
|
|
|
tuple val(meta), path("*.infer_experiment.txt"), emit: txt
|
|
|
|
path "*.version.txt" , emit: version
|
|
|
|
|
|
|
|
script:
|
2020-10-14 17:29:50 +00:00
|
|
|
def software = getSoftwareName(task.process)
|
|
|
|
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
2020-09-10 15:09:54 +00:00
|
|
|
"""
|
|
|
|
infer_experiment.py \\
|
|
|
|
-i $bam \\
|
|
|
|
-r $bed \\
|
2020-10-14 17:29:50 +00:00
|
|
|
$options.args \\
|
2020-09-10 15:09:54 +00:00
|
|
|
> ${prefix}.infer_experiment.txt
|
|
|
|
|
|
|
|
infer_experiment.py --version | sed -e "s/infer_experiment.py //g" > ${software}.version.txt
|
|
|
|
"""
|
|
|
|
}
|