Description Usage Arguments Value Author(s) See Also Examples
Node and node attributes are usually added to a Cytoscape network by defining them on the graph used to construct a CytoscapeWindow. The small family of methods described here, however, provide another avenue for adding an node attribute, for learning which are currently defined, and for deleting and node attribute.
Note that node (and node) attibutes are defined not just for a specific, single CytoscapeWindow, but for an entire Cytoscape application session. Thus if you have two nodes (or nodes) with the same ID (the same name) in two different windows, adding a node attribute results in both nodes having that attribute.
1 | getNodeAttribute(obj, node.name, attribute.name)
|
obj |
a |
node.name |
a |
attribute.name |
a |
The attribute in question, which may be of any scalar type.
Tanja Muetze, Georgi Kolishovski, Paul Shannon
getNodeAttributeNames deleteNodeAttribute
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())
window.name = 'demo.getNodeAttribute'
cw = CytoscapeWindow (window.name, graph=makeSimpleGraph ())
displayGraph (cw)
redraw (cw)
layoutNetwork(cw)
count.B = getNodeAttribute (cw, "B", 'count')
count.B
# [1] 30
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.