mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
90aef30f43
* Set process label to `process_single` for modules with no `task.cpus` usage * Fix tests of 'borked' modules * prettier * More modules are single-threaded and can use process_single * Adding process_single to hmmer/esl* modules * Fix failing tests * Prettier Co-authored-by: Matthieu Muffato <mm49@sanger.ac.uk> Co-authored-by: Daniel Lundin <erik.rikard.daniel@gmail.com>
36 lines
1 KiB
Text
36 lines
1 KiB
Text
process BEDTOOLS_SUBTRACT {
|
|
tag "$meta.id"
|
|
label 'process_single'
|
|
|
|
conda (params.enable_conda ? "bioconda::bedtools=2.30.0" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/bedtools:2.30.0--hc088bd4_0' :
|
|
'quay.io/biocontainers/bedtools:2.30.0--hc088bd4_0' }"
|
|
|
|
input:
|
|
tuple val(meta), path(intervals1), path(intervals2)
|
|
|
|
output:
|
|
tuple val(meta), path("*.bed"), emit: bed
|
|
path "versions.yml" , emit: versions
|
|
|
|
when:
|
|
task.ext.when == null || task.ext.when
|
|
|
|
script:
|
|
def args = task.ext.args ?: ''
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
|
"""
|
|
bedtools \\
|
|
subtract \\
|
|
-a $intervals1 \\
|
|
-b $intervals2 \\
|
|
$args \\
|
|
> ${prefix}.bed
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
bedtools: \$(bedtools --version | sed -e "s/bedtools v//g")
|
|
END_VERSIONS
|
|
"""
|
|
}
|