Learn R Programming

RCytoscape (version 1.22.0)

selectEdges: 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.

See Also

clearSelection selectEdge getSelectedEdgeCount getSelectedEdges hideSelectedEdges

Examples

Run this code
  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')))))

Run the code above in your browser using DataLab