| setEdgeLineWidthDirect | R Documentation |
In the specified CytoscapeWindow, set the lineWidth of the specified edge or edges. Width is measured in pixels.
setEdgeLineWidthDirect(obj, edge.names, new.value)
obj |
a CytoscapeWindowClass object. |
edge.names |
one or more String objects, cy2-style edge names. |
new.value |
an integer object, typically in the range of 0 to 10. |
None.
Paul Shannon
setNodeLineWidthDirect
cw <- new.CytoscapeWindow ('setEdgeLineWidthDirect.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) {
setEdgeLineWidthDirect (cw, edge.names, i)
redraw (cw)
}
setEdgeLineWidthDirect (cw, edge.names, 1)