Skip to content
Snippets Groups Projects
Commit bb969b30 authored by Alán Muñoz's avatar Alán Muñoz
Browse files

QOL improvements

Former-commit-id: 4e4839ea3e8b469b60ea9c371082eb7ec8bf24d5
parent 98f90e42
No related branches found
No related tags found
No related merge requests found
......@@ -34,9 +34,9 @@ class ParametersABC(ABC):
class ProcessABC(ABC):
"Base class for processes"
@property
def parameters(self):
return self.parameters
def __init__(self, parameters):
for k, v in parameters.to_dict().items(): # access parameters directly
setattr(self, k, v)
@abstractmethod
def run(self):
......
class Parameters:
class MergerParameters:
"""
:param tol: float or int threshold of average (prediction error/std) necessary
to consider two tracks the same. If float is fraction of first track,
......
......@@ -6,11 +6,10 @@ import pandas as pd
from core.cells import CellsHDF
from postprocessor.core.base import ParametersABC
from postprocessor.core.base import ParametersABC, ProcessABC
from postprocessor.core.functions.signals import max_ntps, max_nonstop_ntps
# ParametersABC.register(PickerParameters)
class PickerParameters(ParametersABC):
def __init__(
self,
......@@ -33,7 +32,7 @@ class PickerParameters(ParametersABC):
)
class Picker:
class Picker(ProcessABC):
"""
:signals: pd.DataFrame of data used for selection, such as area or GFP/np.max/mean
:cells: Cell object passed to the constructor
......@@ -45,17 +44,15 @@ class Picker:
def __init__(
self,
parameters: PickerParameters,
signals: pd.DataFrame,
cells: CellsHDF,
parameters: PickerParameters,
):
super().__init__(parameters=parameters)
self.signals = signals
self._index = signals.index
self._cells = cells
self.parameters = parameters
for k, v in parameters.to_dict().items(): # access parameters directly
setattr(self, k, v)
@staticmethod
def mother_assign_to_mb_matrix(ma: List[np.array]):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment