Source code for cytoflowgui.workflow.operations.gaussian_1d

#!/usr/bin/env python3.8
# coding: latin-1

# (c) Massachusetts Institute of Technology 2015-2018
# (c) Brian Teague 2018-2022
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

"""
cytoflowgui.workflow.operations.gaussian_1d
-------------------------------------------

"""

from traits.api import (provides, Instance, Str, Property, observe, Constant,
                        List, Dict, Any, DelegatesTo)

from sklearn import mixture

from cytoflow.operations.gaussian import GaussianMixtureOp, GaussianMixture1DView
import cytoflow.utility as util

from ..views import IWorkflowView, WorkflowByView, HistogramPlotParams
from ..serialization import camel_registry, traits_str, traits_repr, dedent
from ..subset import ISubset

from .operation_base import IWorkflowOperation, WorkflowOperation

GaussianMixtureOp.__repr__ = traits_repr


[docs]@provides(IWorkflowOperation) class GaussianMixture1DWorkflowOp(WorkflowOperation, GaussianMixtureOp): # override id so we can differentiate the 1D and 2D ops id = Constant('edu.mit.synbio.cytoflowgui.operations.gaussian_1d') # add 'estimate' and 'apply' metadata name = Str(apply = True) channel = Str(estimate = True) channel_scale = util.ScaleEnum(estimate = True) num_components = util.PositiveCInt(1, allow_zero = False, estimate = True) sigma = util.PositiveCFloat(None, allow_zero = True, allow_none = True, estimate = True) by = List(Str, estimate = True) # add the 'estimate_result' metadata _gmms = Dict(Any, Instance(mixture.GaussianMixture), transient = True, estimate_result = True) # override the base class's "subset" with one that is dynamically generated / # updated from subset_list subset = Property(Str, observe = "subset_list.items.str") subset_list = List(ISubset, estimate = True) # bits to support the subset editor @observe('subset_list:items.str') def _on_subset_changed(self, _): self.changed = 'subset_list' # MAGIC - returns the value of the "subset" Property, above def _get_subset(self): return " and ".join([subset.str for subset in self.subset_list if subset.str])
[docs] def estimate(self, experiment): self.channels = [self.channel] self.scale = {self.channel : self.channel_scale} super().estimate(experiment, subset = self.subset)
[docs] def apply(self, experiment): if not self._gmms: raise util.CytoflowOpError(None, 'Click "Estimate"!') return GaussianMixtureOp.apply(self, experiment)
[docs] def default_view(self, **kwargs): return GaussianMixture1DWorkflowView(op = self, **kwargs)
[docs] def clear_estimate(self): self._gmms = {} self._scale = {}
[docs] def get_notebook_code(self, idx): op = GaussianMixtureOp() op.copy_traits(self, op.copyable_trait_names()) op.channels = [self.channel] op.scale = {self.channel : self.channel_scale} return dedent(""" op_{idx} = {repr} op_{idx}.estimate(ex_{prev_idx}{subset}) ex_{idx} = op_{idx}.apply(ex_{prev_idx}) """ .format(repr = repr(op), idx = idx, prev_idx = idx - 1, subset = ", subset = " + repr(self.subset) if self.subset else ""))
[docs]@provides(IWorkflowView) class GaussianMixture1DWorkflowView(WorkflowByView, GaussianMixture1DView): op = Instance(IWorkflowOperation, fixed = True) channel = DelegatesTo('op') by = DelegatesTo('op') subset = DelegatesTo('op') scale = DelegatesTo('op', 'channel_scale') plot_params = Instance(HistogramPlotParams, ()) # AnnotatingView::plot sets 'huefacet' to the newly-created condition. # making 'huefacet' transient prevents this from updating the plot # in a loop huefacet = Str(transient = True)
[docs] def plot(self, experiment, **kwargs): WorkflowByView.plot(self, experiment, **kwargs) # as noted above, one of the base plot() functions sets huefacet. # make sure to reset it after! self.huefacet = ""
[docs] def get_notebook_code(self, idx): view = GaussianMixture1DView() trait_names = view.copyable_trait_names() trait_names.remove('channel') trait_names.remove('scale') view.copy_traits(self, trait_names) view.subset = self.subset plot_params_str = traits_str(self.plot_params) return dedent(""" op_{idx}.default_view({traits}).plot(ex_{idx}{plot}{plot_params}) """ .format(traits = traits_str(view), idx = idx, plot = ", plot_name = " + repr(self.current_plot) if self.current_plot else "", plot_params = ", " + plot_params_str if plot_params_str else ""))
### Serialization @camel_registry.dumper(GaussianMixture1DWorkflowOp, 'gaussian-1d', version = 1) def _dump(op): return dict(name = op.name, channel = op.channel, channel_scale = op.channel_scale, num_components = op.num_components, sigma = op.sigma, by = op.by, subset_list = op.subset_list) @camel_registry.loader('gaussian-1d', version = 1) def _load(data, version): if data['sigma'] == 0: data['sigma'] = None return GaussianMixture1DWorkflowOp(**data) @camel_registry.dumper(GaussianMixture1DWorkflowView, 'gaussian-1d-view', version = 2) def _dump_view(view): return dict(op = view.op, xfacet = view.xfacet, yfacet = view.yfacet, huefacet = view.huefacet, plot_params = view.plot_params, current_plot = view.current_plot) @camel_registry.dumper(GaussianMixture1DWorkflowView, 'gaussian-1d-view', version = 1) def _dump_view_v1(view): return dict(op = view.op) @camel_registry.loader('gaussian-1d-view', version = any) def _load_view(data, version): return GaussianMixture1DWorkflowView(**data)