View source: R/loadTaxonomyDb.R
loadTaxonomyDb | R Documentation |
NCBI maintains a collection of unique taxonomy IDs and pairs these with associated genus and species designations. This function returns the set of pre-processed values that we use to check that something is a valid Taxonomy ID (or organism).
loadTaxonomyDb()
A data frame with 1 row per genus/species designation and three columns. The 1st column is the taxonomy ID. The second columns is the genus and the third is the species name.
Marc Carlson
## get the data
taxdb <- loadTaxonomyDb()
tail(taxdb)
## which can then be searched etc.
taxdb[grepl('yoelii', taxdb$species), ]
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.