2021-06-30 07:46:24 +00:00
|
|
|
// Import generic module functions
|
2021-09-27 08:41:24 +00:00
|
|
|
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
|
2021-06-30 07:46:24 +00:00
|
|
|
|
|
|
|
params.options = [:]
|
|
|
|
options = initOptions(params.options)
|
|
|
|
|
|
|
|
process DAMAGEPROFILER {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_low'
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:meta, publish_by_meta:['id']) }
|
|
|
|
|
|
|
|
conda (params.enable_conda ? "bioconda::damageprofiler=1.1" : null)
|
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
|
|
container "https://depot.galaxyproject.org/singularity/damageprofiler:1.1--hdfd78af_2"
|
|
|
|
} else {
|
|
|
|
container "quay.io/biocontainers/damageprofiler:1.1--hdfd78af_2"
|
|
|
|
}
|
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(bam)
|
|
|
|
path fasta
|
|
|
|
path fai
|
2021-10-20 08:02:30 +00:00
|
|
|
path specieslist
|
2021-06-30 07:46:24 +00:00
|
|
|
|
|
|
|
output:
|
|
|
|
tuple val(meta), path("${prefix}"), emit: results
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2021-06-30 07:46:24 +00:00
|
|
|
|
|
|
|
script:
|
2021-10-20 08:02:30 +00:00
|
|
|
def software = getSoftwareName(task.process)
|
|
|
|
prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
|
|
|
def reference = fasta ? "-r $fasta" : ""
|
|
|
|
def species_list = specieslist ? "-sf $specieslist" : ""
|
2021-06-30 07:46:24 +00:00
|
|
|
|
|
|
|
"""
|
|
|
|
damageprofiler \\
|
2021-10-20 08:02:30 +00:00
|
|
|
-i $bam \\
|
|
|
|
-o $prefix/ \\
|
|
|
|
$options.args \\
|
|
|
|
$reference \\
|
|
|
|
$species_list
|
2021-06-30 07:46:24 +00:00
|
|
|
|
2021-09-27 08:41:24 +00:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
|
|
${getProcessName(task.process)}:
|
|
|
|
${getSoftwareName(task.process)}: \$(damageprofiler -v | sed 's/^DamageProfiler v//')
|
|
|
|
END_VERSIONS
|
2021-06-30 07:46:24 +00:00
|
|
|
"""
|
2021-10-20 08:02:30 +00:00
|
|
|
|
2021-06-30 07:46:24 +00:00
|
|
|
}
|