GOLeaves(GOstats)
GOLeaves()所属R语言包:GOstats
DEPRECATED Identify the leaves in a GO Graph
不推荐确定一个GO图中的叶
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function is DEPRECATED. Use the leaves function in the graph package instead. See the example below.
此功能已经过时了。 leaves函数,而不是使用图中的包。请看下面的例子。
Given a GO graph this function returns the node labels for all leaves in the graph. A leaf is defined to be a node with only out-edges and no in-edges.
这个函数返回给定一个好图图中所有叶子节点的标签。叶被定义为一个只出边的节点,并没有入边。
用法----------Usage----------
GOLeaves(inG)
参数----------Arguments----------
参数:inG
An instance of a GO graph.
一个好图的一个实例。
Details
详情----------Details----------
All nodes in inG are inspected for in-edges and those with none are returned.
在inG所有节点都在边检查,与那些没有返回。
This should probably be replaced by a function in the graph package that identifies leaves, there is nothing special about GO here.
这也许应该由图中标识叶包的功能所取代,没有什么特别去这里。
值----------Value----------
A vector of the node labels for those nodes with no in-edges.
一个没有边的节点,这些节点标签的向量。
作者(S)----------Author(s)----------
R. Gentleman
参见----------See Also----------
makeGOGraph
makeGOGraph
举例----------Examples----------
library("GO.db")
g1 <- oneGOGraph("GO:0003680", GOMFPARENTS)
g2 <- oneGOGraph("GO:0003701", GOMFPARENTS)
g3 <- join(g1, g2)
leaves(g3, "in")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|