recompute: Compute the cell events by the gates stored within the gating...

Description Usage Arguments Details

View source: R/GatingSet_Methods.R

Description

Compute each cell event to see if it falls into the gate stored within the gating tree and store the result as cell count.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
recompute(
  x,
  y = "root",
  alwaysLoadData = FALSE,
  verbose = FALSE,
  leaf.bool = TRUE
)

## S3 method for class 'GatingSet'
recompute(
  x,
  y = "root",
  alwaysLoadData = FALSE,
  verbose = FALSE,
  leaf.bool = TRUE
)

## S3 method for class 'GatingSetList'
recompute(x, ...)

Arguments

x

GatingSet or GatingSetList

y

character node name or node path. Default "root". Optional.

alwaysLoadData

logical. Specifies whether to load the flow raw data for gating boolean gates. Default 'FALSE'. Optional. Sometime it is more efficient to skip loading the raw data if all the reference nodes and parent are already gated. 'FALSE' will check the parent node and reference to determine whether to load the data. This check may not be sufficient since the further upstream ancestor nodes may not be gated yet. In that case, we allow the gating to fail and prompt user to recompute those nodes explictily. When TRUE, then it forces data to be loaded to guarantee the gating process to be uninterrupted at the cost of unnecessary data IO.

verbose

default is FALSE

leaf.bool

whether to compute the leaf boolean gate, default is TRUE

...

arguments

Details

It is usually used immediately after add or gs_pop_set_gate calls.


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