cy2.edge.names(RCytoscape)
cy2.edge.names()所属R语言包:RCytoscape
cy2.edge.names
cy2.edge.names
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Bioconductor graph edges are named, i.e., A~B. The same edge in the Cytoscape domain would be 'A (<edgeType>) B', where '<edgeType>' might be 'phosphorylates' or 'represses'.
被命名为bioconductor图形边缘,即阿~B。 Cytoscape的域名在同一边缘“(<edgeType>)B”,,<edgeType>“可能是”磷酸化“或”抑制“。
用法----------Usage----------
cy2.edge.names(graph, R.edge.names=NA)
参数----------Arguments----------
参数:graph
An R graph
一个R图
参数:R.edge.names
one or more R graph-style edge names. default NA, in which case all edges in the graph are translated to cy2-style.
一个或多个R图式边缘的名字。默认情况下不适用,在这种情况下,图中所有边翻译CY2风格。
值----------Value----------
A named list, in with Cytoscape edges names are the content, and bioc graph edge names are their names.
命名的列表,在Cytoscape的边缘名称的内容,bioc图形边缘的名字是他们的名字。
作者(S)----------Author(s)----------
Paul Shannon
举例----------Examples----------
g <- makeSimpleGraph ()
cy2.edge.names (g)
# A~B B~C C~A [一个~BB~消委会~一]
# "A (phosphorylates) B" "B (synthetic lethal) C" "C (undefined) A" [“(磷酸化)”的“B(合成致死)架C”的“C(未定义)”]
cy2.edge.names (g, R.edge.names="B~C")
# B~C [B~C]
# "B (synthetic lethal) C" [“乙(合成致死)架C”]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|