| taxonomy_subtree {rotl} | R Documentation |
Taxonomy subtree
Description
Given an ott id, return the inclusive taxonomic subtree descended from the specified taxon.
Usage
taxonomy_subtree(
ott_id = NULL,
output_format = c("taxa", "newick", "phylo", "raw"),
label_format = NULL,
file,
...
)
Arguments
ott_id |
The ott id of the taxon of interest. |
output_format |
the format of the object to be returned. See the ‘Return’ section. |
label_format |
Character. Defines the label type; one of
“ |
file |
the file name where to save the output of the
function. Ignored unless |
... |
additional arguments to customize the API request (see
|
Details
If the output of this function is exported to a file, the only
possible value for the output_format argument is
“newick”. If the file provided already exists, it
will be silently overwritten.
Value
If the file argument is missing:
“
taxa” a list of the taxa names (species) in slottip_label, and higher-level taxonomy (e.g., families, genera) in slotedge_label, descending from the taxa corresponding to theott_idprovided.“
newick” a character vector containing the newick formatted string corresponding to the taxonomic subtree for theott_idprovided.“
phylo” an object of the classphylofrom theapepackage.“
raw” the direct output from the API, i.e., a list with an element named ‘newick’ that contains the subtree as a newick formatted string.
If a file argument is provided (and
output_format is set to “phylo”), a
logical indicating whether the file was successfully created.
Examples
## Not run:
req <- taxonomy_subtree(ott_id=515698)
plot(taxonomy_subtree(ott_id=515698, output_format="phylo"))
## End(Not run)