2020-12-17 13:54:48 +00:00
|
|
|
// Import generic module functions
|
2021-09-27 08:41:24 +00:00
|
|
|
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
|
2020-12-17 13:54:48 +00:00
|
|
|
|
|
|
|
params.options = [:]
|
2021-03-15 12:16:43 +00:00
|
|
|
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,
|
2021-04-09 16:23:56 +00:00
|
|
|
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
|
|
|
|
2021-10-21 11:28:59 +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) {
|
2021-10-21 11:28:59 +00:00
|
|
|
container "https://depot.galaxyproject.org/singularity/mulled-v2-03bfeb32fe80910c231f630d4262b83677c8c0f4:f4bb19b68e66de27e4c64306f951d5ff11919931-0"
|
2020-12-17 13:54:48 +00:00
|
|
|
} else {
|
2021-10-21 11:28:59 +00:00
|
|
|
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)
|
2021-10-21 11:28:59 +00:00
|
|
|
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
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2020-12-17 13:54:48 +00:00
|
|
|
|
|
|
|
script:
|
2021-10-21 11:28:59 +00:00
|
|
|
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 \\
|
2021-10-21 11:28:59 +00:00
|
|
|
$function_switch \\
|
2020-12-17 13:54:48 +00:00
|
|
|
$options.args \\
|
|
|
|
$prefix
|
2021-09-27 08:41:24 +00:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
|
|
${getProcessName(task.process)}:
|
|
|
|
${getSoftwareName(task.process)}: \$(echo $VERSION)
|
2021-09-28 13:37:47 +00:00
|
|
|
bedtools: \$(bedtools --version | sed -e "s/bedtools v//g")
|
|
|
|
r-base: \$(echo \$(R --version 2>&1) | sed 's/^.*R version //; s/ .*\$//')
|
2021-09-27 08:41:24 +00:00
|
|
|
END_VERSIONS
|
2020-12-17 13:54:48 +00:00
|
|
|
"""
|
2021-01-05 10:20:13 +00:00
|
|
|
}
|