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

54 lines
1.9 KiB
Text
Raw Normal View History

2020-09-10 15:45:11 +00:00
// Import generic module functions
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
2020-09-10 15:45:11 +00:00
params.options = [:]
options = initOptions(params.options)
2020-09-10 15:45:11 +00:00
process MACS2_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-09-10 15:45:11 +00:00
2021-02-16 23:58:23 +00:00
conda (params.enable_conda ? "bioconda::macs2=2.2.7.1" : null)
2020-12-14 00:05:48 +00:00
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/macs2:2.2.7.1--py38h0213d0e_1"
} else {
container "quay.io/biocontainers/macs2:2.2.7.1--py38h0213d0e_1"
}
2020-09-10 15:45:11 +00:00
input:
tuple val(meta), path(ipbam), path(controlbam)
val macs2_gsize
2020-12-17 23:50:24 +00:00
2020-09-10 15:45:11 +00:00
output:
tuple val(meta), path("*.{narrowPeak,broadPeak}"), emit: peak
tuple val(meta), path("*.xls") , emit: xls
path "versions.yml" , emit: versions
2020-09-10 15:45:11 +00:00
tuple val(meta), path("*.gappedPeak"), optional:true, emit: gapped
tuple val(meta), path("*.bed") , optional:true, emit: bed
tuple val(meta), path("*.bdg") , optional:true, emit: bdg
script:
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
2020-09-10 15:45:11 +00:00
def format = meta.single_end ? 'BAM' : 'BAMPE'
def control = controlbam ? "--control $controlbam" : ''
"""
macs2 \\
callpeak \\
$options.args \\
2020-09-10 15:45:11 +00:00
--gsize $macs2_gsize \\
--format $format \\
--name $prefix \\
--treatment $ipbam \\
2020-12-17 23:50:24 +00:00
$control
2020-09-10 15:45:11 +00:00
cat <<-END_VERSIONS > versions.yml
${getProcessName(task.process)}:
${getSoftwareName(task.process)}: \$(macs2 --version | sed -e "s/macs2 //g")
END_VERSIONS
2020-09-10 15:45:11 +00:00
"""
}