| getNodes,graphGML-method {CytoML} | R Documentation |
get nodes from graphGML object
## S4 method for signature 'graphGML'
getNodes(x, y, order = c("default", "bfs", "dfs",
"tsort"), only.names = TRUE)
x |
|
y |
|
order |
|
only.names |
|
It returns the node names and population names by default. Or return the entire nodeData associated with each node.
xmlfile <- system.file("extdata/cytotrol_tcell_cytobank.xml", package = "CytoML")
g <- read.gatingML.cytobank(xmlfile)
getNodes(g)
getNodes(g, only.names = FALSE)