moveNode {flowWorkspace} | R Documentation |
move a node along with all of its descendant nodes to the given ancester
moveNode(gh, node, to)
gh |
GatingHierarchy |
node |
the node to be moved |
to |
the new parent node under which the |
library(flowWorkspace) dataDir <- system.file("extdata",package="flowWorkspaceData") suppressMessages(gs <- load_gs(list.files(dataDir, pattern = "gs_manual",full = TRUE))) gh <- gs[[1]] old.parent <- getParent(gh, "CD4") new.parent <- "singlets" moveNode(gh, "CD4", new.parent) getParent(gh, "CD4")