cytoflowgui.workflow.subset

Structured representation of the possible clauses for a subset argument to IOperation.estimate or IView.plot.

ISubset - The top-level traits.has_traits.Interface

BoolSubset - represents a subset of True or False values from a boolean

condition

CategorySubset - represents a subset of one or more values from a categorical

condition.

RangeSubset - represents a subset that is a range of values from a

numerical condition.

class cytoflowgui.workflow.subset.ISubset(adaptee, default=<class 'traits.adaptation.adaptation_error.AdaptationError'>)[source]

Bases: traits.has_traits.Interface

The interface that the rest of the subset classes must implement.

class cytoflowgui.workflow.subset.BoolSubset[source]

Bases: traits.has_traits.HasStrictTraits

A subset that selects either True or False values from a boolean condition

class cytoflowgui.workflow.subset.CategorySubset[source]

Bases: traits.has_traits.HasStrictTraits

A subset that selects one or more values from a categorical condition

class cytoflowgui.workflow.subset.RangeSubset[source]

Bases: traits.has_traits.HasStrictTraits

A subset that selects a range from a numerical condition