| selectEdges | R Documentation |
Select the specified edges.
selectEdges(obj, edge.names, preserve.current.selection=TRUE)
obj |
a CytoscapeWindowClass object. |
edge.names |
a list of strings, the names of edges to select. |
preserve.current.selection |
a logical object. |
None.
Paul Shannon
clearSelection selectEdge getSelectedEdgeCount getSelectedEdges hideSelectedEdges
cw <- new.CytoscapeWindow ('selectEdges.test', graph=makeSimpleGraph())
displayGraph (cw); layoutNetwork (cw); redraw (cw)
clearSelection (cw)
selectEdges (cw, c ("A (phosphorylates) B", "B (synthetic lethal) C"))
getSelectedEdges (cw)
# more complicated, but more realistic:
#selectEdges (cw, as.character ( cy2.en (g, names (which (eda (g, 'edgeType') == 'phosphorylates')))))