Description Usage Arguments Value See Also Examples
View source: R/GatingHierarchy_Methods.R
Returns the name of the parent population or a character/numeric vector of all the children of the current population in the given GatingHierarchy
1 2 3 4 5 6 7 | gs_pop_get_parent(obj, y, ...)
gh_pop_get_parent(obj, y, ...)
gs_pop_get_children(obj, y, showHidden = TRUE, ...)
gh_pop_get_children(obj, y, showHidden = TRUE, ...)
|
obj |
A |
y |
a |
... |
other arguments passed to gs_get_pop_paths methods |
showHidden |
|
gs_pop_get_parent
returns a character
vector, the name of the parent population.
gs_pop_get_children
returns a character
or numeric
vector of the node names or node indices of the child nodes of the current node. An empty vector if the node has no children.
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
# G is a GatingHierarchy
# return the name of the parent of the fifth node in the hierarchy.
gs_pop_get_parent(G,gs_get_pop_paths(G[[1]])[5])
n<-gs_get_pop_paths(G,tsort=T)[4]
#Get the names of the child nodes of the 4th node in this gating hierarchy.
gs_pop_get_children(G,n)
#Get the ids of the child nodes
gs_pop_get_children(G,4)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.