gh_copy_gate: Copy a node along with all of its descendant nodes to the...

Description Usage Arguments Examples

View source: R/copyNode.R

Description

Copy a node along with all of its descendant nodes to the given ancestor

Usage

1
gh_copy_gate(gh, node, to)

Arguments

gh

GatingHierarchy

node

the node to be copied

to

the new parent node under which the node will be copied

Examples

1
2
3
4
5
6
7
8
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 <- gs_pop_get_parent(gh, "CD4")
new.parent <- "singlets"
gh_copy_gate(gh, "CD4", new.parent)
gs_get_pop_paths(gh)

flowWorkspace documentation built on Nov. 8, 2020, 8:08 p.m.