KEGGEdge-class(KEGGgraph)
KEGGEdge-class()所属R语言包:KEGGgraph
Class 'KEGGEdge'
类“KEGGEdge”
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A class to represent 'relation' elements in KGML files and
A类以代表在KGML文件关系的元素,
类的对象----------Objects from the Class----------
Objects are normally created by parseRelation function, which is not intended to be called by user directly
通常是由parseRelation功能,这是不打算由用户直接调用对象
插槽----------Slots----------
entry1ID: The entryID of the first KEGGNode
entry1ID:第一KEGGNode的EntryID
entry2ID: The entryID of the second KEGGNode
entry2ID:的第二KEGGNode的的EntryID
type: The type of the relation, see getType-methods
type:关系的类型,看到getType-methods
subtype: The subtype(s) of the edge, a list of KEGGEdgeSubType
subtype:边缘的亚型(S),KEGGEdgeSubType名单
方法----------Methods----------
getEntryID signature(obj = "KEGGEdge"): Get entryIDs
getEntryIDsignature(obj = "KEGGEdge"):entryIDs
getType signature(object = "KEGGEdge"): Get the
的getTypesignature(object = "KEGGEdge"):
getName signature(object = "KEGGEdge"): Get the names
的getNamesignature(object = "KEGGEdge"):名称
show signature(object = "KEGGEdge"): Show method
显示的signature(object = "KEGGEdge"):显示方法
作者(S)----------Author(s)----------
Jitao David Zhang <a href="mailto:jitao_david.zhang@roche.com">mailto:jitao_david.zhang@roche.com</a>
参考文献----------References----------
<h3>See Also</h3> <code>KEGGNode-class</code>
举例----------Examples----------
mapfile<- system.file("extdata/map00260.xml", package="KEGGgraph")
maptest <- parseKGML(mapfile)
x <- edges(maptest)[[1]]
class(x)
## examples to extract information from KEGGEdge[#例子提取从KEGGEdge信息]
getName(x)
getEntryID(x)
getType(x)
getSubtype(x)
subtype <- getSubtype(x)[[1]]
getName(subtype)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|