createWindowFromSelection(RCytoscape)
createWindowFromSelection()所属R语言包:RCytoscape
createWindowFromSelection
createWindowFromSelection
译者:生物统计家园网 机器人LoveR
描述----------Description----------
All selected nodes, their connecting edges, and associated attributes are copied into a new CytoscapeWindow, with the supplied title.
所有选定的节点,其连接的边缘,相关属性复制到一个新CytoscapeWindow,所提供的标题。
用法----------Usage----------
createWindowFromSelection(obj, new.windowTitle, return.graph)
参数----------Arguments----------
参数:obj
a CytoscapeWindowClass object.
CytoscapeWindowClass对象。
参数:new.windowTitle
a String.
String。
参数:return.graph
an logical object.
logical对象。
值----------Value----------
A new CytoscapeWindow object, with the graph slot populated with the new selected subgraph, if requested. If not requested, the graph slot holds an empty graph.
一个新的CytoscapeWindow对象,填充了新的选择子,如果要求的图形插槽。如果没有要求,图形插槽持有一个空的图表。
作者(S)----------Author(s)----------
Paul Shannon
参见----------See Also----------
selectNodes
的selectNodes
举例----------Examples----------
cy <- CytoscapeConnection ()
title <- 'createWindowFromSelection demo'
cw <- new.CytoscapeWindow (title, makeSimpleGraph ())
displayGraph (cw)
redraw (cw)
layout (cw)
selectNodes (cw, c ('A', 'C'))
new.window.title <- 'NEW WINDOW'
if (new.window.title %in% as.character (getWindowList (cy)))
deleteWindow (cy, new.window.title)
c2 <- createWindowFromSelection (cw, new.window.title, TRUE)
redraw (c2)
layout (c2)
clearSelection (c2)
selectNodes (c2, 'C')
print (getSelectedNodeCount (c2)) # should be 1[应该是1]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|