nf-core_modules/software/preseq/lcextrap/main.nf

46 lines
1.5 KiB
Text
Raw Normal View History

2020-09-10 15:45:11 +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:45:11 +00:00
process PRESEQ_LCEXTRAP {
tag "$meta.id"
label 'process_medium'
label 'error_ignore'
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:45:11 +00:00
2020-10-14 17:29:50 +00:00
conda (params.enable_conda ? "bioconda::preseq=2.0.3" : null)
if (workflow.containerEngine == 'singularity' && !params.pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/preseq:2.0.3--hf53bd2b_3"
} else {
container "quay.io/biocontainers/preseq:2.0.3--hf53bd2b_3"
}
2020-09-10 15:45:11 +00:00
input:
tuple val(meta), path(bam)
2020-10-14 17:29:50 +00:00
2020-09-10 15:45:11 +00:00
output:
tuple val(meta), path("*.ccurve.txt"), emit: ccurve
tuple val(meta), path("*.log") , emit: log
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:45:11 +00:00
def paired_end = meta.single_end ? '' : '-pe'
"""
preseq \\
lc_extrap \\
2020-10-14 17:29:50 +00:00
$options.args \\
2020-09-10 15:45:11 +00:00
$paired_end \\
-output ${prefix}.ccurve.txt \\
$bam
cp .command.err ${prefix}.command.log
echo \$(preseq 2>&1) | sed 's/^.*Version: //; s/Usage:.*\$//' > ${software}.version.txt
"""
}