selectEdgesR Documentation

selectEdges

Description

Select the specified edges.

Usage

selectEdges(obj, edge.names, preserve.current.selection=TRUE)

Arguments

obj a CytoscapeWindowClass object.
edge.names a list of strings, the names of edges to select.
preserve.current.selection a logical object.

Value

None.

Author(s)

Paul Shannon

See Also

clearSelection selectEdge getSelectedEdgeCount getSelectedEdges hideSelectedEdges

Examples

  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')))))