selectNodes | R Documentation |
Select the specified nodes.
selectNodes(obj, node.names, preserve.current.selection=TRUE)
obj |
a CytoscapeWindowClass object. |
node.names |
a list of strings, the names of nodes to select. |
preserve.current.selection |
a logical object. |
None.
Paul Shannon
clearSelection getSelectedNodeCount getSelectedNodes hideSelectedNodes
cw <- new.CytoscapeWindow ('selectNodes.test', graph=makeSimpleGraph()) clearSelection (cw) selectNodes (cw, c ('A', 'B')) getSelectedNodes (cw) # [1] "A" "B"