FlowCytometryTools.ThresholdGate

class FlowCytometryTools.ThresholdGate(threshold, channel, region, name=None)

Passes all events above or below a given threshold.

Parameters:

threshold : float

Location of the gate

channel : str

Defines the channel name.

region : [‘above’, ‘below’]

If ‘above’, the gate only passes through data that lies above the threshold.

name : str

The gate’s name.

Methods

plot([flip, ax_channels, ax]) Plots the gate.
validiate_input() Optional method to be defined by derived class
plot(flip=False, ax_channels=None, ax=None, *args, **kwargs)

Plots the gate.

Parameters:

ax : axes to use for plotting the gate on

flip : boolean

If True, draws the interval along the y-axis instead of along the x-axis

Returns:

Reference to created artists. :