Source code for cytoflowgui.workflow.operations.range2d

#!/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.range2d
---------------------------------------

"""

from traits.api import provides, Instance, Str, Property, Tuple, observe

from cytoflow.operations.range2d import Range2DOp, ScatterplotRangeSelection2DView
import cytoflow.utility as util

from ..views import IWorkflowView, WorkflowView, ScatterplotPlotParams
from ..serialization import camel_registry, traits_str, traits_repr, dedent

from .operation_base import IWorkflowOperation, WorkflowOperation

Range2DOp.__repr__ = traits_repr

[docs]@provides(IWorkflowView) class Range2DSelectionView(WorkflowView, ScatterplotRangeSelection2DView): op = Instance(IWorkflowOperation, fixed = True) plot_params = Instance(ScatterplotPlotParams, ()) _range = Tuple(util.FloatOrNone(None), util.FloatOrNone(None), util.FloatOrNone(None), util.FloatOrNone(None), status = True) xlow = Property(util.FloatOrNone(None), observe = '_range') xhigh = Property(util.FloatOrNone(None), observe = '_range') ylow = Property(util.FloatOrNone(None), observe = '_range') yhigh = Property(util.FloatOrNone(None), observe = '_range') # data flow: user drags cursor. remote canvas calls _onselect, sets # _range. _range is copied back to local view (because it's # "status = True"). _update_range is called, and because # self.interactive is false, then the operation is updated. the # operation's range is sent back to the remote operation (because # "apply = True"), where the remote operation is updated. # low ahd high are properties (both in the view and in the operation) # so that the update can happen atomically. otherwise, they happen # one after the other, which is noticably slow! def _onselect(self, pos1, pos2): """Update selection traits""" self._range = (min(pos1.xdata, pos2.xdata), max(pos1.xdata, pos2.xdata), min(pos1.ydata, pos2.ydata), max(pos1.ydata, pos2.ydata)) @observe('_range') def _update_range(self, _): if not self.interactive: self.op._range = self._range def _get_xlow(self): return self._range[0] def _get_xhigh(self): return self._range[1] def _get_ylow(self): return self._range[2] def _get_yhigh(self): return self._range[3]
[docs] def clear_estimate(self): # no-op return
[docs] def get_notebook_code(self, idx): view = ScatterplotRangeSelection2DView() view.copy_traits(self, view.copyable_trait_names()) plot_params_str = traits_str(self.plot_params) return dedent(""" op_{idx}.default_view({traits}).plot(ex_{prev_idx}{plot_params}) """ .format(idx = idx, traits = traits_str(view), prev_idx = idx - 1, plot_params = ", " + plot_params_str if plot_params_str else ""))
[docs]@provides(IWorkflowOperation) class Range2DWorkflowOp(WorkflowOperation, Range2DOp): name = Str(apply = True) xchannel = Str(apply = True) ychannel = Str(apply = True) _range = Tuple(util.FloatOrNone(None), util.FloatOrNone(None), util.FloatOrNone(None), util.FloatOrNone(None), apply = True) xlow = Property(util.FloatOrNone(None), observe = '_range') xhigh = Property(util.FloatOrNone(None), observe = '_range') ylow = Property(util.FloatOrNone(None), observe = '_range') yhigh = Property(util.FloatOrNone(None), observe = '_range') def _get_xlow(self): return self._range[0] def _set_xlow(self, val): self._range = (val, self._range[1], self._range[2], self._range[3]) def _get_xhigh(self): return self._range[1] def _set_xhigh(self, val): self._range = (self._range[0], val, self._range[2], self._range[3]) def _get_ylow(self): return self._range[2] def _set_ylow(self, val): self._range = (self._range[0], self._range[1], val, self._range[3]) def _get_yhigh(self): return self._range[3] def _set_yhigh(self, val): self._range = (self._range[0], self._range[1], self._range[2], val)
[docs] def default_view(self, **kwargs): return Range2DSelectionView(op = self, **kwargs)
[docs] def get_notebook_code(self, idx): op = Range2DOp() op.copy_traits(self, op.copyable_trait_names()) return dedent(""" op_{idx} = {repr} ex_{idx} = op_{idx}.apply(ex_{prev_idx}) """ .format(repr = repr(op), idx = idx, prev_idx = idx - 1))
### Serialization @camel_registry.dumper(Range2DWorkflowOp, 'range2d', version = 1) def _dump(op): return dict(name = op.name, xchannel = op.xchannel, xlow = op.xlow, xhigh = op.xhigh, ychannel = op.ychannel, ylow = op.ylow, yhigh = op.yhigh) @camel_registry.loader('range2d', version = 1) def _load(data, version): return Range2DWorkflowOp(**data) @camel_registry.dumper(Range2DSelectionView, 'range2d-view', version = 2) def _dump_view(view): return dict(op = view.op, xscale = view.xscale, yscale = view.yscale, huefacet = view.huefacet, subset_list = view.subset_list, plot_params = view.plot_params, current_plot = view.current_plot) @camel_registry.dumper(Range2DSelectionView, 'range2d-view', version = 1) def _dump_view_v1(view): return dict(op = view.op, xscale = view.xscale, yscale = view.yscale, huefacet = view.huefacet, subset_list = view.subset_list) @camel_registry.loader('range2d-view', version = any) def _load_view(data, version): return Range2DSelectionView(**data)