Retrieve the names of the node attributes in the specified graph.
These are typically strings like 'type', 'label', 'count', and
(strongly recommended when you create a graph) 'nodeType'. Once you are
reminded of the names of the edge attributes, you can use the method
'noa' to get all the values of this attribute for the nodes in the graph.
Usage
noa.names(graph)
Arguments
graph
typically, a bioc graphNEL)
Value
A list, the contents of which are the attribute values, the names of
which are the names of the edges.
# first, delete existing windows to save memory: deleteAllWindows(CytoscapeConnection())
g <- makeSimpleGraph()
noa.names (g)
# [1] "type" "lfc" "label" "count"