| ncbi_get_taxon_summary {taxize} | R Documentation |
Downloads summary taxon information from the NCBI taxonomy databases for a set of taxonomy UIDs using eutils esummary.
ncbi_get_taxon_summary(id, ...)
id |
(character) NCBI taxonomy uids to retrieve information for. See Details. |
... |
Curl options passed on to |
If your input vector or list of NCBI IDs is longer than about 8000 characters
(use nchar(paste(ids, collapse = "+"))), split the list up into chunks since
at about that number of characters you will run into the HTTP 414 error
"Request-URI Too Long".
A data.frame with the following columns:
The uid queried for
The name of the taxon; a binomial name if the taxon is of rank species
The taxonomic rank (e.g. 'Genus')
Zachary Foster zacharyfoster1989@Sgmail.com
## Not run:
ncbi_get_taxon_summary(c(1430660, 4751))
# use curl options
library("httr")
ncbi_get_taxon_summary(c(1430660, 4751), config = verbose())
## End(Not run)