Description Usage Arguments Value Author(s) Examples
Get NCBI taxonomy IDs, ranks and names for an input taxon list
1 | get_ids_rank(input_taxa, currentNCBIinfo)
|
input_taxa |
input taxon list |
currentNCBIinfo |
table/dataframe of the current taxonomy data (taxonNamesFull.txt) |
A list of 3 dataframes: idList, rankList and reducedInfoList
Vinh Tran tran@bio.uni-frankfurt.de
1 2 3 4 5 6 7 | input_taxa <- c("272557", "176299")
ncbi_filein <- system.file(
"extdata", "data/taxonNamesFull.txt",
package = "phyloprofile", mustWork = TRUE
)
currentNCBIinfo <- as.data.frame(data.table::fread(ncbi_filein))
get_ids_rank(input_taxa, currentNCBIinfo)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.