Description Usage Arguments Value Author(s) See Also Examples
In the specified CytoscapeWindow, set the line style of the specified edge or edges, bypassing all rule mapping. The getLineStyles method shows the possible values.
1 | setEdgeLineStyleDirect(obj, edge.names, new.values)
|
obj |
a |
edge.names |
one or more |
new.values |
one or more |
None.
Tanja Muetze, Georgi Kolishovski, Paul Shannon
setEdgeLineStyleRule setEdgeColorDirect setEdgeFontSizeDirect setEdgeLabelColorDirect setEdgeLabelDirect setEdgeLabelOpacityDirect setEdgeLabelWidthDirect setEdgeLineStyleDirect setEdgeLineWidthDirect 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 16 17 18 19 20 21 22 23 24 25 | ## Not run:
# first, delete existing windows to save memory:
deleteAllWindows(CytoscapeConnection())
cw <- CytoscapeWindow ('setEdgeLineStyleDirect.test', graph=makeSimpleGraph())
displayGraph (cw)
layoutNetwork (cw, 'force-directed')
edges.of.interest <- as.character (cy2.edge.names (cw@graph))
supported.styles <- getLineStyles (cw)
# pass three edges and three styles
setEdgeLineStyleDirect (cw, edges.of.interest, supported.styles [5:7])
# pass three edges and one style
setEdgeLineStyleDirect (cw, edges.of.interest, supported.styles [8])
# now loop through all of the styles
for (style in supported.styles) {
setEdgeLineStyleDirect (cw, edges.of.interest, style)
}
# restore the default
setEdgeLineStyleDirect (cw, edges.of.interest, 'SOLID')
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.