Learn R Programming

RCy3 (version 1.2.0)

setDefaultEdgeSourceArrowColor: setDefaultEdgeSourceArrowColor

Description

In the specified CytoscapeConnection, stipulate the default color for all edge source arrows other than those mentioned in an edge source arrow color rule.

Usage

setDefaultEdgeSourceArrowColor(obj, new.color, vizmap.style.name = "default")

Arguments

obj
a CytoscapeConnectionClass object.
new.color
a String object, a hex string, of the form '#RRGGBB'.
vizmap.style.name
a String object, if this vizmap style needs to be distinguished from the default type.

Value

None.

See Also

setDefaultNodeShape setDefaultNodeColor setDefaultNodeSize setDefaultNodeColor setDefaultNodeBorderColor setDefaultNodeBorderWidth setDefaultNodeFontSize setDefaultNodeLabelColor setDefaultEdgeLineWidth setDefaultEdgeFontSize setEdgeColorRule

Examples

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

  cw <- CytoscapeWindow ('setDefaultEdgeSourceArrowColor test', graph=makeSimpleGraph())
  displayGraph (cw)
  layoutNetwork(cw, 'force-directed')
  setDefaultEdgeSourceArrowColor (cw, '#F0F0F0')
  setEdgeSourceArrowShapeDirect (cw, c('A (phosphorylates) B', 'B (synthetic lethal) C'), 'DIAMOND')
  # redraw (cw) --> not required anymore

Run the code above in your browser using DataLab