Description Usage Arguments Value Author(s) See Also Examples
In the specified CytoscapeWindow, set the opacity of the specified edge or edges at the same time. Low numbers, near zero, are transparent. High numbers, near 255, are maximally opaque: they are fully visible.
1 | setEdgeOpacityDirect(obj, edge.names, new.values)
|
obj |
a |
edge.names |
one or more |
new.values |
a |
None.
Tanja Muetze, Georgi Kolishovski, Paul Shannon
setNodeOpacityDirect
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Not run:
# first, delete existing windows to save memory:
deleteAllWindows(CytoscapeConnection())
cw <- CytoscapeWindow ('setEdgeOpacityDirect.test', graph=makeSimpleGraph())
displayGraph (cw)
layoutNetwork (cw, 'force-directed')
edge.names = as.character (cy2.edge.names (cw@graph)) [1:2]
for (i in 1:10) {
setEdgeOpacityDirect (cw, edge.names, 255 - (i * 25))
}
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.