taxid {myTAI} | R Documentation |
Retrieve taxonomy categories from NCBI Taxonomy
Description
This function retrieves category information from NCBI Taxonomy and is able to filter kingdom specific taxids.
Usage
taxid(db.path, download = FALSE, update = FALSE, filter = NULL)
Arguments
db.path |
path to download and store the NCBI Taxonomy |
download |
a logical value specifying whether or not the |
update |
should the local file be updated? Please specify the |
filter |
a character string specifying the kingdom of life for which taxids shall be returned. Options are
|
Author(s)
Hajk-Georg Drost
Examples
## Not run:
# download categories.dmp file to current working directory
# and filter for 'Archea' taxids
Archea.taxids <- taxid(db.path = getwd(), filter = "Archea", download = TRUE)
# Once the NCBI Taxonomy 'categories.dmp' file is downloaded to your machine ('download = TRUE')
# the 'taxid()' function can be proceed on the local 'categories.dmp' file
# e.g. filter for Virus taxids
Virus.taxids <- taxid(db.path = getwd(), filter = "Viruses")
## End(Not run)