getFirstNeighbors | R Documentation |
Returns a non-redundant ('uniquified') list of all of the first neighbors of the supplied list of nodes.
getFirstNeighbors(obj, node.names)
obj |
a CytoscapeWindowClass object. |
node.names |
a String list object. |
A list of node names.
Paul Shannon
selectNodes selectFirstNeighborsOfSelectedNodes
cw <- new.CytoscapeWindow ('getFirstNeighbors.test', graph=makeSimpleGraph()) displayGraph (cw) redraw (cw) layoutNetwork (cw, 'jgraph-spring') print (getFirstNeighbors (cw, 'A')) selectNodes (cw, getFirstNeighbors (cw, 'A')) # note that A is not selected