Resolve names using Open Tree of Life (OTL) resolver
tol_resolve(
names = NULL,
context_name = NULL,
do_approximate_matching = TRUE,
ids = NULL,
include_suppressed = FALSE,
...
)
(character) taxon names to be queried
name of the taxonomic context to be searched
(length-one character vector). Must match (case sensitive) one
of the values returned by rotl::tnrs_contexts()
.
(logical) A logical indicating whether or not
to perform approximate string (a.k.a. “fuzzy”) matching. Using FALSE
will greatly improve speed. Default: TRUE
An array of OTL ids to use for identifying names. These will be assigned to each name in the names array. If ids is provided, then ids and names must be identical in length.
(logical) Ordinarily, some quasi-taxa, such as
incertae sedis buckets and other non-OTUs, are suppressed from TNRS
results. If this parameter is true, these quasi-taxa are allowed as
possible TNRS results. Default: FALSE
Curl options passed on to httr::POST
within
rotl::tnrs_match_names()
A data frame summarizing the results of the query. The
original query output is appended as an attribute to the
returned object (and can be obtained using
attr(object, "original_response")
).
https://github.com/OpenTreeOfLife/germinator/wiki/TNRS-API-v3#match_names
if (FALSE) {
tol_resolve(names=c("echinodermata", "xenacoelomorpha",
"chordata", "hemichordata"))
tol_resolve(c("Hyla", "Salmo", "Diadema", "Nautilus"))
tol_resolve(c("Hyla", "Salmo", "Diadema", "Nautilus"),
context_name = "Animals")
turducken_spp <- c("Meleagris gallopavo", "Anas platyrhynchos",
"Gallus gallus")
tol_resolve(turducken_spp, context_name="Animals")
}