Learn R Programming

RCy3 (version 1.2.0)

setEdgeColorDirect: setEdgeColorDirect

Description

In the specified CytoscapeWindow, set the color of the specified edge or edges.

Usage

setEdgeColorDirect(obj, edge.names, new.value)

Arguments

obj
a CytoscapeWindowClass object.
edge.names
one ore more String objects, cy2-style edge names.
new.value
a String object, a color in hex notation.

Value

None.

See Also

setNodeColorDirect

Examples

Run this code
  # first, delete existing windows to save memory:
  deleteAllWindows(CytoscapeConnection())

  cw <- CytoscapeWindow ('setEdgeColorDirect.test', graph=makeSimpleGraph())
  displayGraph (cw)
  layoutNetwork (cw, 'force-directed')
  edge.names <- as.character (cy2.edge.names (cw@graph))[1:2]
  setEdgeColorDirect (cw, edge.names, '#F833AA')
  # redraw (cw) --> not required anymore

Run the code above in your browser using DataLab