bind_tip_df | R Documentation |
Graft a tip to a phylogeny at location specified.
bind_tip_df(
tree = NULL,
where,
tip_label,
frac = 0.5,
new_node_above = FALSE,
node_label = NULL,
return_tree = TRUE,
tree_tbl = NULL,
node_heights = NULL,
use_castor = FALSE
)
tree |
A phylogeny, with class of "phylo". |
where |
Location where to insert the tip. It can be either tip label or node label, but must be characters. If the location does not have a name, assign it first. |
tip_label |
Name of the new tip inserted. |
frac |
The fraction of branch length, must be between 0 and 1. This only applies when location is a tip or |
new_node_above |
Whether to insert the new node above when the location is a node? Default is |
node_label |
Name of the new node created. This only applies when location is a tip or |
return_tree |
Whether to return a phylogeny with class "phylo?" Default is |
tree_tbl |
A tibble version of the tree, optional. |
node_heights |
A named numeric vector of node hieghts of the tree, generated by |
use_castor |
Whether to use package |
Either a phylogeny or a data frame, which can be then converted to a phylogeny later.
## Not run:
library(rtrees)
bind_tip(tree_plant_otl, "N70407", tip_label = "test_sp")
tree_plant_otl_df = tidytree::as_tibble(tree_plant_otl)
node_heights = ape::branching.times(tree_plant_otl)
bind_tip(tree_tbl = tree_plant_otl_df, where = "N70407",
tip_label = "test_sp", node_heights = node_heights)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.