Learn R Programming

RCytoscape (version 1.22.0)

setEdgeLabelDirect: setEdgeLabelDirect

Description

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

Usage

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

Arguments

obj
a CytoscapeWindowClass object.
edge.names
one or more String objects, cy2-style edge names.
new.value
a string object, the new label.

Value

None.

See Also

setNodeEdgeLabelDirect

Examples

Run this code
  cw <- new.CytoscapeWindow ('setEdgeLabelDirect.test', graph=makeSimpleGraph())
  displayGraph (cw)
  redraw (cw)
  layoutNetwork(cw, 'jgraph-spring')
  edge.names = as.character (cy2.edge.names (cw@graph)) [1:2]
  for (i in 1:10) {
    setEdgeLabelDirect (cw, edge.names, 255 - (i * 25))
    redraw (cw)
    }
  for (i in 1:10) {
    setEdgeLabelDirect (cw, edge.names, i * 25)
    redraw (cw)
    }

Run the code above in your browser using DataLab