mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
42 lines
1.4 KiB
Text
42 lines
1.4 KiB
Text
|
// Import generic module functions
|
||
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
||
|
|
||
|
process DEEPTOOLS_COMPUTEMATRIX {
|
||
|
tag "$meta.id"
|
||
|
label 'process_high'
|
||
|
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/deeptools:3.4.3--py_0"
|
||
|
//container "https://depot.galaxyproject.org/singularity/deeptools:3.4.3--py_0"
|
||
|
|
||
|
conda (params.conda ? "bioconda::deeptools=3.4.3" : null)
|
||
|
|
||
|
input:
|
||
|
tuple val(meta), path(bigwig)
|
||
|
path bed
|
||
|
val options
|
||
|
|
||
|
output:
|
||
|
tuple val(meta), path("*.mat.gz"), emit: matrix
|
||
|
tuple val(meta), path("*.mat.tab"), emit: table
|
||
|
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}"
|
||
|
"""
|
||
|
computeMatrix \\
|
||
|
$ioptions.args \\
|
||
|
--regionsFileName $bed \\
|
||
|
--scoreFileName $bigwig \\
|
||
|
--outFileName ${prefix}.computeMatrix.mat.gz \\
|
||
|
--outFileNameMatrix ${prefix}.computeMatrix.vals.mat.tab \\
|
||
|
--numberOfProcessors $task.cpus
|
||
|
|
||
|
computeMatrix --version | sed -e "s/computeMatrix //g" > ${software}.version.txt
|
||
|
"""
|
||
|
}
|