nf-core_modules/modules/entrezdirect/esearch/main.nf
Alexander Ramos Díaz 4ed5dc4593
new (fixed) module: entrezdirect/esearch (#1927)
* added module files

* latest version

* latest version

* latest version

* latest version

* updated test, failing

* added comment on why to use tail -n+3

* same as latest test

* moved args to the end of script

* updated test

* double quotes for esearch input

* removed tail -n+3, stderr is redirected by nextflow

* changed single to double quotes

* Update modules/entrezdirect/esearch/main.nf

Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>

* Update modules/entrezdirect/esearch/meta.yml

Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>

* Update meta.yml

removed default from database parameter

Co-authored-by: James A. Fellows Yates <jfy133@gmail.com>
2022-07-26 09:07:38 -06:00

35 lines
961 B
Text

process ENTREZDIRECT_ESEARCH {
tag "$meta.id"
label 'process_low'
conda (params.enable_conda ? "bioconda::entrez-direct=16.2" : null)
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/entrez-direct:16.2--he881be0_1':
'quay.io/biocontainers/entrez-direct:16.2--he881be0_1' }"
input:
tuple val(meta), val(term)
val database
output:
tuple val(meta), path("*.xml") , emit: xml
path "versions.yml" , emit: versions
when:
task.ext.when == null || task.ext.when
script:
def prefix = task.ext.prefix ?: "${meta.id}"
def args = task.ext.args ?: ''
"""
esearch \\
-db $database \\
-query $term \\
$args > ${prefix}.xml
cat <<-END_VERSIONS > versions.yml
"${task.process}":
esearch: \$(esearch -version)
END_VERSIONS
"""
}