R/worms_downstream.R
worms_downstream.Rd
Retrieve all taxa names downstream in hierarchy for WORMS
worms_downstream(id, downto, intermediate = FALSE, start = 1, ...)
(integer) One or more AphiaID's
(character) The taxonomic level you want to go down to. See examples below. The taxonomic level IS case sensitive, and you do have to spell it correctly. See rank_ref_zoo for spelling.
(logical) If TRUE
, return a list of length two
with target taxon rank names, with additional list of data.frame's of
intermediate taxonomic groups. Default: FALSE
(integer) Record number to start at
crul options passed on to worrms::wm_children()
, including the
parameters marine_only
and offset
, see ?worrms::wm_children
for
details
data.frame of taxonomic information downstream to family from e.g.,
Order, Class, etc., or if intermediated=TRUE
, list of length two,
with target taxon rank names, and intermediate names.
if (FALSE) {
## the genus Gadus
worms_downstream(id = 125732, downto="species")
worms_downstream(id = 125732, downto="species", intermediate=TRUE)
worms_downstream(id = 51, downto="class")
worms_downstream(id = 51, downto="subclass", intermediate=TRUE)
worms_downstream(id = 105, downto="subclass")
# marine_only parameter
worms_downstream(545470, downto = "species")
worms_downstream(545470, downto = "species", marine_only = FALSE)
}