mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 05:43:08 +00:00
Add macs2
This commit is contained in:
parent
f61ad7506a
commit
c5bb9c2fde
2 changed files with 48 additions and 0 deletions
1
software/macs2/callpeak/functions.nf
Symbolic link
1
software/macs2/callpeak/functions.nf
Symbolic link
|
@ -0,0 +1 @@
|
||||||
|
../../lib/functions.nf
|
47
software/macs2/callpeak/main.nf
Normal file
47
software/macs2/callpeak/main.nf
Normal file
|
@ -0,0 +1,47 @@
|
||||||
|
// Import generic module functions
|
||||||
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
||||||
|
|
||||||
|
process MACS2_CALLPEAK {
|
||||||
|
tag "$meta.id"
|
||||||
|
label 'process_medium'
|
||||||
|
publishDir "${params.outdir}",
|
||||||
|
mode: params.publish_dir_mode,
|
||||||
|
saveAs: { filename -> saveFiles(filename:filename, options:options, publish_dir:getSoftwareName(task.process), publish_id:meta.id) }
|
||||||
|
|
||||||
|
container "quay.io/biocontainers/macs2:2.2.7.1--py37h516909a_0"
|
||||||
|
//container "https://depot.galaxyproject.org/singularity/macs2:2.2.7.1--py37h516909a_0"
|
||||||
|
|
||||||
|
conda (params.conda ? "bioconda::macs2=2.2.7.1" : null)
|
||||||
|
|
||||||
|
input:
|
||||||
|
tuple val(meta), path(ipbam), path(controlbam)
|
||||||
|
val macs2_gsize
|
||||||
|
val options
|
||||||
|
|
||||||
|
output:
|
||||||
|
tuple val(meta), path("*.{narrowPeak,broadPeak}"), emit: peak
|
||||||
|
tuple val(meta), path("*.xls"), emit: xls
|
||||||
|
tuple val(meta), path("*.gappedPeak"), emit: gapped optional true
|
||||||
|
tuple val(meta), path("*.bed"), emit: bed optional true
|
||||||
|
tuple val(meta), path("*.bdg"), emit: bdg optional true
|
||||||
|
path "*.version.txt", emit: version
|
||||||
|
|
||||||
|
script:
|
||||||
|
def software = getSoftwareName(task.process)
|
||||||
|
def ioptions = initOptions(options)
|
||||||
|
def prefix = ioptions.suffix ? "${meta.id}${ioptions.suffix}" : "${meta.id}"
|
||||||
|
def format = meta.single_end ? 'BAM' : 'BAMPE'
|
||||||
|
def control = controlbam ? "--control $controlbam" : ''
|
||||||
|
"""
|
||||||
|
macs2 \\
|
||||||
|
callpeak \\
|
||||||
|
$ioptions.args \\
|
||||||
|
--gsize $macs2_gsize \\
|
||||||
|
--format $format \\
|
||||||
|
--name $prefix \\
|
||||||
|
--treatment $ipbam \\
|
||||||
|
$control
|
||||||
|
|
||||||
|
macs2 --version | sed -e "s/macs2 //g" > ${software}.version.txt
|
||||||
|
"""
|
||||||
|
}
|
Loading…
Reference in a new issue