nf-core_modules/modules/deepbgc/download/main.nf
James A. Fellows Yates 90aef30f43
Set process label to process_single for modules with no task.cpus usage (#2076)
* 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>
2022-09-19 11:54:47 +02:00

30 lines
845 B
Text

process DEEPBGC_DOWNLOAD {
label 'process_single'
conda (params.enable_conda ? "bioconda::deepbgc=0.1.30" : null)
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/deepbgc:0.1.30--pyhb7b1952_1':
'quay.io/biocontainers/deepbgc:0.1.30--pyhb7b1952_1' }"
output:
path "deepbgc_db/" , emit: db
path "versions.yml" , emit: versions
when:
task.ext.when == null || task.ext.when
script:
def args = task.ext.args ?: ''
"""
export DEEPBGC_DOWNLOADS_DIR='./deepbgc_db'
deepbgc \\
download
cat <<-END_VERSIONS > versions.yml
"${task.process}":
deepbgc: \$(echo \$(deepbgc info 2>&1 /dev/null/ | grep 'version' | cut -d " " -f3) )
END_VERSIONS
"""
}