| findMRCA {phytools} | R Documentation |
This function returns the most recent common ancestor (node number) for a set of taxa. If tips=NULL will be redundant with mrca (for type="node") or vcv.phylo, but much slower (for type="height").
findMRCA(tree, tips=NULL, type=c("node","height"))
tree |
a phylogenetic tree as an object of class |
tips |
a vector containing a set of tip labels. |
type |
either |
If tips==NULL will return the result of a normal function call to mrca. If tips=NULL will return a matrix equal to vcv.phylo.
The node number of the MRCA, or a matrix of node numbers (if tips==NULL) - for type="node"; or the height of the MRCA, or a matrix of heights (if tips==NULL) - for type="height".
Liam Revell liam.revell@umb.edu
Revell, L. J. (2012) phytools: An R package for phylogenetic comparative biology (and other things). Methods Ecol. Evol., 3, 217-223.
tree<-pbtree(n=20)
anc<-findMRCA(tree,c("t1","t10","t15"))