getNodeIDs | R Documentation |
Get node IDs from tree
getNodeIDs(tree)
tree |
(phylo) a phylogenetic tree. |
(integer) a vector with names being node IDs.
Shubham Gupta, shubh.gupta@mail.utoronto.ca
ORCID: 0000-0003-3500-8152
License: (c) Author (2020) + GPL-3 Date: 2020-05-31
getTree
m <- matrix(c(0,1,2,3, 1,0,1.5,1.5, 2,1.5,0,1, 3,1.5,1,0), byrow = TRUE,
ncol = 4, dimnames = list(c("run1", "run2", "run3", "run4"),
c("run1", "run2", "run3", "run4")))
distMat <- as.dist(m)
## Not run:
tree <- getTree(distMat)
getNodeIDs(tree)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.