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, ...)
x | vector of ncbi gene bank accession alphanumeric string, or a gi numeric string |
---|---|
... | other parameters to be passed to |
a tbl with colnames x, taxid, class, match, multiple_matches, pattern_match, uri, name
if (FALSE) { x <- c("XP_022900619.1", "XP_022900618.1", "XP_018333511.1", "XP_018573075.1") genbank2uid_tbl(x = x) }