label.subtree(rphast)
label.subtree()所属R语言包:rphast
Label subtree
标签子树
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Apply a label to a subtree
标签的一个子树
用法----------Usage----------
参数----------Arguments----------
参数:tree
A vector of character strings, each containing a newick tree
一个字符串向量,每个都包含将Newick树
参数:node
A character string, giving the node at the head of the subtree.
一个字符串,在头节点的子树。
参数:label
A single character string giving the label to apply to the branches in the subtree.
一个字符串的标签适用于子树中的分支。
参数:include.leading
A logical value; if TRUE, include the branch leading to the subtree in the labelled group; otherwise include only descendants of the named node.
一个逻辑值,如果TRUE,包括分公司领导的子树标记组,否则只包括指定节点的后代。
值----------Value----------
A vector of character strings containing the modified trees; the branches are labelled by appending a pound sign and the label
一个向量的字符串包含的基因树木的树枝被标记为一个的磅符号和标签附加
(作者)----------Author(s)----------
Melissa J. Hubisz
实例----------Examples----------
trees <- c("((hg18:1.0, panTro2:2.0)hg18-panTro2:3.0, mm9:4.0);",
"(((hg18:0.01, panTro2:0.01)hg18-panTro2:0.07,
(mm9:0.083220,rn4:0.090564)mm9-rn4:
0.269385)hg18-rn4:0.020666,canFam2:0.193569);")
label.subtree(trees, "hg18-panTro2", "human-chimp", include.leading=FALSE)
label.subtree(trees, "hg18-panTro2", "human-chimp", include.leading=TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|