Description Usage Arguments Value Author(s) See Also Examples
In the specified CytoscapeWindow, set the line width of the specified edge or edges. Width is measured in pixels.
1 | setEdgeLineWidthDirect(obj, edge.names, new.value)
|
obj |
a |
edge.names |
one or more |
new.value |
an |
None.
Tanja Muetze, Georgi Kolishovski, Paul Shannon
setNodeLineWidthDirect setEdgeLineStyleRule setEdgeColorDirect setEdgeFontSizeDirect setEdgeLabelColorDirect setEdgeLabelDirect setEdgeLabelOpacityDirect setEdgeLabelWidthDirect setEdgeLineStyleDirect setEdgeOpacityDirect setEdgeSourceArrowColorDirect setEdgeSourceArrowDirect setEdgeSourceArrowOpacityDirect setEdgeSourceArrowShapeDirect setEdgeTargetArrowColorDirect setEdgeTargetArrowDirect setEdgeTargetArrowOpacityDirect setEdgeTargetArrowShapeDirect setEdgeTooltipDirect
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ## Not run:
# first, delete existing windows to save memory:
deleteAllWindows(CytoscapeConnection())
cw <- CytoscapeWindow ('setEdgeLineWidthDirect.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) {
setEdgeLineWidthDirect (cw, edge.names, i)
}
setEdgeLineWidthDirect (cw, edge.names, c(1,3))
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.