Get UniProt Taxonomy Nodes
Using this function, you can retrieve taxonomic nodes information by providing their NCBI taxonomic identifiers. also, you can explicitly retrieve other nodes in relation to your provided node's hierarchy in UniProt Taxonomy database.
rba_uniprot_taxonomy( ids, hierarchy = NA, node_only = TRUE, page_size = 200, page_number = 1, ... )
ids |
(numeric) a single or a numeric vector of NCBI taxonomic identifier(s) |
hierarchy |
Retrieve taxonomic nodes that have specific hierarchical relation to your provided taxonomic node. should be one of: "children", "parent" or "siblings". |
node_only |
Retrieve only the node(s) information and exclude URL links to parents, siblings and children nodes. |
page_size |
(numeric) Only when hierarchy is provided. hierarchy information may be very long, thus UniProt API will paginate the results, you may use this argument to control the pagination. maximum value is 200. |
page_number |
(numeric) Only when hierarchy is provided. hierarchy information may be very long, thus UniProt API will paginate the results, you may use this argument to control the pagination. |
... |
rbioapi option(s). Refer to |
a list containing your provided nodes or their related nodes taxonomic information.
"GET https://ebi.ac.uk/proteins/api/ids/ids"
"GET https://ebi.ac.uk/proteins/api/ids//id/id/node"
"GET https://ebi.ac.uk/proteins/api/id/id/node"
"GET https://ebi.ac.uk/proteins/api/id/id/children"
"GET https://ebi.ac.uk/proteins/api/id/id/children/node"
"GET https://ebi.ac.uk/proteins/api/id/id/parent"
"GET https://ebi.ac.uk/proteins/api/id/id/parent/node"
"GET https://ebi.ac.uk/proteins/api/id/id/siblings"
"GET https://ebi.ac.uk/proteins/api/id/id/siblings/node"
Andrew Nightingale, Ricardo Antunes, Emanuele Alpi, Borisas Bursteinas, Leonardo Gonzales, Wudong Liu, Jie Luo, Guoying Qi, Edd Turner, Maria Martin, The Proteins API: accessing key integrated protein and genome information, Nucleic Acids Research, Volume 45, Issue W1, 3 July 2017, Pages W539–W544, https://doi.org/10.1093/nar/gkx237
Other "UniProt - Taxonomy":
rba_uniprot_taxonomy_lca()
,
rba_uniprot_taxonomy_lineage()
,
rba_uniprot_taxonomy_name()
,
rba_uniprot_taxonomy_path()
,
rba_uniprot_taxonomy_relationship()
rba_uniprot_taxonomy(ids = c(9606, 10090)) rba_uniprot_taxonomy(ids = 9989, hierarchy = "children")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.