Description Usage Arguments Value Author(s) See Also Examples
In the specified CytoscapeWindow, set the source arrow shape of the specified edge or edges, using one of the supported shapes.
1 | setEdgeSourceArrowShapeDirect(obj, edge.names, new.values)
|
obj |
a |
edge.names |
one or more cy2-style edge names, |
new.values |
one or more |
None.
Tanja Muetze, Georgi Kolishovski, Paul Shannon
getArrowShapes setEdgeTargetArrowRule setDefaultEdgeSourceArrowColor setEdgeSourceArrowColorDirect setEdgeSourceArrowColorRule setEdgeSourceArrowRule setEdgeSourceArrowShapeDirect setEdgeTargetArrowColorDirect setEdgeTargetArrowColorRule setEdgeTargetArrowRule setEdgeTargetArrowShapeDirect setDefaultEdgeTargetArrowColor
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | ## Not run:
# first, delete existing windows to save memory:
deleteAllWindows(CytoscapeConnection())
cw <- CytoscapeWindow ('setEdgeSourceArrowShapeDirect.test', graph=makeSimpleGraph())
displayGraph (cw)
layoutNetwork (cw, 'force-directed')
edges.of.interest <- as.character (cy2.edge.names (cw@graph))
supported.arrow.shapes <- getArrowShapes (cw)
# first try passing three edges and three arrow shapes
setEdgeSourceArrowShapeDirect (cw, edges.of.interest, supported.arrow.shapes [2:4])
# now try passing three edges and one arrow.shapes
setEdgeSourceArrowShapeDirect (cw, edges.of.interest, supported.arrow.shapes [6])
# restore the default
setEdgeSourceArrowShapeDirect (cw, edges.of.interest, 'NONE')
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.