nf-core_modules/modules/ucsc/bedgraphtobigwig/main.nf

46 lines
1.5 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
def VERSION = '377'
2020-12-09 21:20:26 +00:00
process UCSC_BEDGRAPHTOBIGWIG {
2020-09-10 15:45:11 +00:00
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::ucsc-bedgraphtobigwig=377" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/ucsc-bedgraphtobigwig:377--h446ed27_1"
} else {
container "quay.io/biocontainers/ucsc-bedgraphtobigwig:377--h446ed27_1"
}
2020-12-17 23:50:24 +00:00
2020-09-10 15:45:11 +00:00
input:
tuple val(meta), path(bedgraph)
path sizes
2020-12-17 23:50:24 +00:00
2020-09-10 15:45:11 +00:00
output:
tuple val(meta), path("*.bigWig"), emit: bigwig
path "versions.yml" , emit: version
2020-09-10 15:45:11 +00:00
script:
def software = getSoftwareName(task.process)
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
2020-09-10 15:45:11 +00:00
"""
bedGraphToBigWig \\
$bedgraph \\
$sizes \\
${prefix}.bigWig
cat <<-END_VERSIONS > versions.yml
${getProcessName(task.process)}:
${getSoftwareName(task.process)}: \$(echo $VERSION)
END_VERSIONS
2020-09-10 15:45:11 +00:00
"""
}