Given a ncbi gene bank accession alphanumeric string or a gi numeric string (x), it returns a tibble contaning ncbi taxonomy id, name and other related columns.

genbank2uid_tbl(x, ...)

Arguments

x

vector of ncbi gene bank accession alphanumeric string, or a gi numeric string (x).

...

other parameters to be passed to taxize::genbank2uid.

Value

a tbl with colnames x, taxid, class, match, multiple_matches, pattern_match, uri, name

Examples

if (FALSE) { x <- c("XP_022900619.1", "XP_022900618.1", "XP_018333511.1", "XP_018573075.1") genbank2uid_tbl(x = x) }