mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 12:43:09 +00:00
9842a10833
* add software/pairtools * create a branch for pairtools/parse * fix the issue of bioconda output is different from docker. * remove customized code from test. Co-authored-by: Harshil Patel <drpatelh@users.noreply.github.com>
44 lines
1.5 KiB
Text
44 lines
1.5 KiB
Text
// Import generic module functions
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
params.options = [:]
|
|
options = initOptions(params.options)
|
|
|
|
process PAIRTOOLS_PARSE {
|
|
tag "$meta.id"
|
|
label 'process_low'
|
|
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']) }
|
|
|
|
conda (params.enable_conda ? "bioconda::pairtools=0.3.0" : null)
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
container "https://depot.galaxyproject.org/singularity/pairtools:0.3.0--py37hb9c2fc3_5"
|
|
} else {
|
|
container "quay.io/biocontainers/pairtools:0.3.0--py37hb9c2fc3_5"
|
|
}
|
|
|
|
input:
|
|
tuple val(meta), path(bam)
|
|
path chromsizes
|
|
|
|
output:
|
|
tuple val(meta), path("*.pairsam.gz") , emit: pairsam
|
|
tuple val(meta), path("*.pairsam.stat"), emit: stat
|
|
path "*.version.txt" , emit: version
|
|
|
|
script:
|
|
def software = getSoftwareName(task.process)
|
|
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
|
"""
|
|
pairtools \\
|
|
parse \\
|
|
-c $chromsizes \\
|
|
$options.args \\
|
|
--output-stats ${prefix}.pairsam.stat \\
|
|
-o ${prefix}.pairsam.gz \\
|
|
$bam
|
|
|
|
echo \$(pairtools --version 2>&1) | sed 's/pairtools.*version //' > ${software}.version.txt
|
|
"""
|
|
}
|