mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +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.2 KiB
Text
36 lines
1.2 KiB
Text
process GOAT_TAXONSEARCH {
|
|
tag "$meta.id"
|
|
label 'process_single'
|
|
|
|
conda (params.enable_conda ? "bioconda::goat=0.2.0" : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/goat:0.2.0--h92d785c_0':
|
|
'quay.io/biocontainers/goat:0.2.0--h92d785c_0' }"
|
|
|
|
input:
|
|
tuple val(meta), val(taxon), path(taxa_file)
|
|
|
|
output:
|
|
tuple val(meta), path("*.tsv"), emit: taxonsearch
|
|
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}"
|
|
input = taxa_file ? "-f ${taxa_file}" : "-t ${taxon}"
|
|
if (!taxon && !taxa_file) error "No input. Valid input: single taxon identifier or a .txt file with identifiers"
|
|
if (taxon && taxa_file ) error "Only one input is required: a single taxon identifier or a .txt file with identifiers"
|
|
"""
|
|
goat-cli taxon search \\
|
|
$args \\
|
|
$input > ${prefix}.tsv
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
goat: \$(goat-cli --version | cut -d' ' -f2)
|
|
END_VERSIONS
|
|
"""
|
|
}
|