subtree(rphast)
subtree()所属R语言包:rphast
Subtree
子树
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Get a subtree
获取一个子树
用法----------Usage----------
参数----------Arguments----------
参数:tree
A vector of character strings, each containing a newick tree
一个字符串向量,每个都包含将Newick树
参数:node
A vector of character strings, each representing the name of the node which will be the new root of the tree. If node is shorter than tree, values will be recycled, and a warning produced if length(tree) %% length(node) != 0
一个字符串向量,每个节点的名称,这将是新树的根。如果节点是短于树,值将被回收再利用,并警告如果length(tree) %% length(node) != 0生产
参数:super.tree
A vector of logical values. If TRUE, then remove all nodes which are descendants of node, rather than keeping them.
一个向量,逻辑值。如果是TRUE,然后将所有节点的后代节点,而不是将它们。
值----------Value----------
A vector of trees which have been pruned, removing all nodes
一个向量的树木已被删节,删除所有节点
(作者)----------Author(s)----------
Melissa J. Hubisz and Adam Siepel
实例----------Examples----------
trees <- c("((hg18, panTro2), mm9);",
"((hg18:0.142679,(mm9:0.083220,rn4:0.090564):0.269385)
:0.020666,canFam2:0.193569);")
trees <- name.ancestors(trees)
subtree(trees, c("hg18-panTro2", "mm9-rn4"))
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|