mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-13 05:13:09 +00:00
4ed5dc4593
* 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>
55 lines
1.6 KiB
YAML
55 lines
1.6 KiB
YAML
name: "entrezdirect_esearch"
|
|
description: Searches a term in a public NCBI database
|
|
keywords:
|
|
- public datasets
|
|
- entrez
|
|
- search
|
|
- ncbi
|
|
- database
|
|
tools:
|
|
- entrezdirect:
|
|
description: |
|
|
Entrez Direct (EDirect) is a method for accessing the NCBI's set of
|
|
interconnected databases (publication, sequence, structure, gene,
|
|
variation, expression, etc.) from a UNIX terminal window. Functions
|
|
take search terms from command line arguments. Individual operations
|
|
are combined to build multi-step queries. Record retrieval and
|
|
formatting normally complete the process.
|
|
homepage: https://www.ncbi.nlm.nih.gov/books/NBK179288/
|
|
documentation: https://www.ncbi.nlm.nih.gov/books/NBK25501/
|
|
tool_dev_url: https://www.ncbi.nlm.nih.gov/books/NBK25498/
|
|
doi: 10.1016/S0076-6879(96)66012-1
|
|
licence: ["PUBLIC DOMAIN"]
|
|
|
|
input:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test' ]
|
|
- database:
|
|
type: value
|
|
description: Value must be a valid Entrez database name.
|
|
- term:
|
|
type: value
|
|
description: |
|
|
Entrez text query. All special characters must be URL encoded.
|
|
Spaces may be replaced by '+' signs.
|
|
|
|
output:
|
|
- meta:
|
|
type: map
|
|
description: |
|
|
Groovy Map containing sample information
|
|
e.g. [ id:'test' ]
|
|
- versions:
|
|
type: file
|
|
description: File containing software versions
|
|
pattern: "versions.yml"
|
|
- result_xml:
|
|
type: file
|
|
description: Query result text in XML format
|
|
pattern: "*.xml"
|
|
|
|
authors:
|
|
- "@alxndrdiaz"
|