Description Usage Arguments Value Author(s) See Also Examples
In the specified CytoscapeWindow, set the edgeTargetArrowColor of the specified edge or edges. Low numbers, near zero, are transparent. High numbers, near 255, are maximally opaque: they are fully visible.
1 | setEdgeTargetArrowColorDirect(obj, edge.names, new.colors)
|
obj |
a |
edge.names |
one or more |
new.colors |
one or more |
None.
Paul Shannon
setNodeEdgeTargetArrowColorDirect
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | cw <- new.CytoscapeWindow ('setEdgeTargetArrowColorDirect.test', graph=makeSimpleGraph ())
displayGraph (cw)
redraw (cw)
layoutNetwork(cw, 'jgraph-spring')
arrows = c ('Arrow', 'Diamond', 'Circle')
edgeType.values <- c ('phosphorylates', 'synthetic lethal', 'undefined')
setEdgeTargetArrowRule (cw, 'edgeType', edgeType.values, arrows)
setEdgeTargetArrowRule (cw, 'edgeType', edgeType.values, arrows)
colors.1 = c ("#FFFFFF", "#FFFFFF", "#FFFFFF")
colors.2 = c ("#AA00AA", "#00AAAA", "#0000AA")
edge.names = as.character (cy2.edge.names (cw@graph)) [1:3]
for (i in 1:2) {
setEdgeTargetArrowColorDirect (cw, edge.names, colors.1)
redraw (cw)
Sys.sleep (1)
setEdgeTargetArrowColorDirect (cw, edge.names, colors.2)
redraw (cw)
Sys.sleep (1)
} # for i
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.