createPolygonGate.Rd
Creates a polygon gate.
createPolygonGate(
experimentId,
xChannel,
yChannel,
name,
vertices,
label = NULL,
gid = generateId(),
parentPopulationId = NULL,
tailoredPerFile = FALSE,
fcsFileId = NULL,
locked = FALSE,
createPopulation = is.null(fcsFileId)
)
The ID of the experiment to which to add the gate, or a
byName
expression.
The name of the x channel to which the gate applies.
The name of the y channel to which the gate applies.
The name of the gate.
List of vectors of coordinates, like
list(c(x,y), c(x,y), ...)
.
Position of the label. Defaults to the midpoint of the gate.
Group ID of the gate, used for tailoring. If this is not specified, then a new Group ID will be created.
ID of the parent population or a byName
expression. Use UNGATED
for the "ungated" population. Only used if
createPopulation
is TRUE
.
Whether or not this gate is tailored per FCS file.
ID of FCS file or a byName
expression, if tailored
per file. Use NULL
for the global gate in a tailored gate group.
Prevents modification of the gate via the web interface.
Automatically create corresponding population.
Specify parentPopulationId
if set to TRUE
.