write.subtree | R Documentation |
write a tree or a sub-tree into a string in parenthetical format
write.subtree(inode, nodematrix,taxaname,root,print.support=FALSE)
inode |
the root node of a sub-tree |
nodematrix |
a tree node matrix |
taxaname |
taxa names |
root |
the root node of a sub-tree |
print.support |
print out support values if print.support=TRUE |
If inode is the root of the tree, the function will write the whole tree into a string in parenthetical format. If inode is not the root node, the function will write the sub-tree into a string. The function works for both rooted trees and unrooted trees.
The function returns a tree string in parenthetical format
Liang Liu lliu@uga.edu
write.tree.string
, read.tree.nodes
data(dat.coaltree)
tree<-read.tree.nodes(dat.coaltree$sptree)
tree$nodes
tree$names
write.subtree(7,tree$nodes,tree$names,7)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.