taxize options
taxize_options(taxon_state_messages = NULL, ncbi_sleep = NULL, quiet = FALSE)
(logical) suppress messages? default: NULL
(same as setting FALSE
). Set to TRUE
to suppress messages, and FALSE
to not suppress messages
(numeric/integer) number of seconds to sleep between
NCBI ENTREZ http requests. applies to the functions: classification()
,
comm2sci()
, genbank2uid()
, get_uid()
and ncbi_children()
.
defaults: 0.334 (without API key) or 0.101 (with API key). minimum value
can not be less than 0.101
(logical) quiet informational output from this function.
default: TRUE
if (FALSE) {
taxize_options()
taxize_options(FALSE)
taxize_options(TRUE)
taxize_options(ncbi_sleep = 0.4)
taxize_options(taxon_state_messages = TRUE, ncbi_sleep = 0.4)
}