cytoflowgui.experiment_pane_model

The classes that provide the model for the ExperimentBrowserDockPane.

class cytoflowgui.experiment_pane_model.WorkflowItemNode(*args: Any, **kwargs: Any)[source]

Bases: traitsui.api.TreeNodeObject

A tree node for the Experiment

wi = <traits.trait_types.Instance object>
label = 'WorkflowItem'
tno_get_label(_)[source]
tno_allows_children(node)[source]
tno_has_children(node)[source]
tno_get_menu(_)[source]
tno_get_children(_)[source]
class cytoflowgui.experiment_pane_model.ChannelsNode(*args: Any, **kwargs: Any)[source]

Bases: traitsui.api.TreeNodeObject

A tree node for the group of channels

wi = <traits.trait_types.Instance object>
label = 'Channels'
tno_get_label(node)[source]
tno_allows_children(node)[source]
tno_has_children(node)[source]
tno_get_menu(_)[source]
tno_get_icon(node, is_expanded)[source]
tno_get_children(_)[source]
class cytoflowgui.experiment_pane_model.ChannelNode(*args: Any, **kwargs: Any)[source]

Bases: traitsui.api.TreeNodeObject

A tree node for a single channel

wi = <traits.trait_types.Instance object>

The WorkflowItem that this channel is part of

channel = <traits.trait_types.Str object>
tno_get_label(_)[source]
tno_allows_children(_)[source]
tno_has_children(_)[source]
tno_get_menu(_)[source]
tno_get_icon(node, is_expanded)[source]
tno_get_children(_)[source]
class cytoflowgui.experiment_pane_model.ConditionsNode(*args: Any, **kwargs: Any)[source]

Bases: traitsui.api.TreeNodeObject

A tree node for all the conditions

wi = <traits.trait_types.Instance object>
label = 'Conditions'
tno_get_label(_)[source]
tno_allows_children(node)[source]
tno_has_children(node)[source]
tno_get_menu(_)[source]
tno_get_icon(node, is_expanded)[source]
tno_get_children(_)[source]
class cytoflowgui.experiment_pane_model.ConditionNode(*args: Any, **kwargs: Any)[source]

Bases: traitsui.api.TreeNodeObject

A tree node for a single condition

wi = <traits.trait_types.Instance object>

The WorkflowItem that this condition is part of

condition = <traits.trait_types.Str object>
tno_get_label(_)[source]
tno_allows_children(_)[source]
tno_has_children(_)[source]
tno_get_menu(_)[source]
tno_get_icon(node, is_expanded)[source]
tno_get_children(_)[source]
class cytoflowgui.experiment_pane_model.StatisticsNode(*args: Any, **kwargs: Any)[source]

Bases: traitsui.api.TreeNodeObject

A tree node for all the statistics

wi = <traits.trait_types.Instance object>
label = 'Statistics'
tno_get_label(_)[source]
tno_allows_children(node)[source]
tno_has_children(node)[source]
tno_get_menu(_)[source]
tno_get_icon(node, is_expanded)[source]
tno_get_children(_)[source]
class cytoflowgui.experiment_pane_model.StatisticNode(*args: Any, **kwargs: Any)[source]

Bases: traitsui.api.TreeNodeObject

A tree node for a single statistic

wi = <traits.trait_types.Instance object>

The WorkflowItem that this condition is part of

statistic = <traits.trait_types.Tuple object>
tno_get_label(_)[source]
tno_allows_children(_)[source]
tno_has_children(_)[source]
tno_get_menu(_)[source]
tno_get_icon(node, is_expanded)[source]
tno_get_children(_)[source]
class cytoflowgui.experiment_pane_model.StringNode(*args: Any, **kwargs: Any)[source]

Bases: traitsui.api.TreeNodeObject

A tree node for strings

name = <traits.trait_types.Str object>

Name of the value

label = <traits.trait_types.Str object>

User-specified override of the default label

value = <traits.trait_types.Str object>

The value itself

tno_allows_children(node)[source]
tno_has_children(node)[source]
tno_get_menu(_)[source]
tno_get_icon(node, is_expanded)[source]
tno_get_label(node)[source]

Gets the label to display for a specified object.

format_value(value)[source]

Returns the formatted version of the value.