nf-core_modules/modules/seacr/callpeak/main.nf

48 lines
1.8 KiB
Text
Raw Normal View History

2020-12-17 13:54:48 +00:00
// Import generic module functions
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
2020-12-17 13:54:48 +00:00
params.options = [:]
options = initOptions(params.options)
2020-12-17 13:54:48 +00:00
2021-01-05 09:50:47 +00:00
def VERSION = '1.3'
2020-12-17 13:54:48 +00:00
process SEACR_CALLPEAK {
tag "$meta.id"
label 'process_medium'
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']) }
2020-12-17 13:54:48 +00:00
conda (params.enable_conda ? "bioconda::seacr=1.3 conda-forge::r-base=4.0.2 bioconda::bedtools=2.30.0" : null)
2020-12-17 13:54:48 +00:00
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/mulled-v2-03bfeb32fe80910c231f630d4262b83677c8c0f4:f4bb19b68e66de27e4c64306f951d5ff11919931-0"
2020-12-17 13:54:48 +00:00
} else {
container 'quay.io/biocontainers/mulled-v2-03bfeb32fe80910c231f630d4262b83677c8c0f4:f4bb19b68e66de27e4c64306f951d5ff11919931-0'
2020-12-17 13:54:48 +00:00
}
2021-01-05 09:54:32 +00:00
2020-12-17 13:54:48 +00:00
input:
tuple val(meta), path(bedgraph), path(ctrlbedgraph)
val (threshold)
2021-01-05 09:54:32 +00:00
2020-12-17 13:54:48 +00:00
output:
tuple val(meta), path("*.bed"), emit: bed
path "versions.yml" , emit: versions
2020-12-17 13:54:48 +00:00
script:
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
def function_switch = ctrlbedgraph ? "$ctrlbedgraph" : "$threshold"
2020-12-17 13:54:48 +00:00
"""
2021-01-05 09:50:47 +00:00
SEACR_1.3.sh \\
2020-12-17 13:54:48 +00:00
$bedgraph \\
$function_switch \\
2020-12-17 13:54:48 +00:00
$options.args \\
$prefix
cat <<-END_VERSIONS > versions.yml
${getProcessName(task.process)}:
${getSoftwareName(task.process)}: \$(echo $VERSION)
bedtools: \$(bedtools --version | sed -e "s/bedtools v//g")
r-base: \$(echo \$(R --version 2>&1) | sed 's/^.*R version //; s/ .*\$//')
END_VERSIONS
2020-12-17 13:54:48 +00:00
"""
2021-01-05 10:20:13 +00:00
}