Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
aliby-mirror
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Swain Lab
aliby
aliby-mirror
Commits
bb969b30
Commit
bb969b30
authored
3 years ago
by
Alán Muñoz
Browse files
Options
Downloads
Patches
Plain Diff
QOL improvements
Former-commit-id: 4e4839ea3e8b469b60ea9c371082eb7ec8bf24d5
parent
98f90e42
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
core/base.py
+3
-3
3 additions, 3 deletions
core/base.py
core/merger.py
+1
-1
1 addition, 1 deletion
core/merger.py
core/picker.py
+5
-8
5 additions, 8 deletions
core/picker.py
with
9 additions
and
12 deletions
core/base.py
+
3
−
3
View file @
bb969b30
...
...
@@ -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
):
...
...
This diff is collapsed.
Click to expand it.
core/merger.py
+
1
−
1
View file @
bb969b30
class
Parameters
:
class
Merger
Parameters
:
"""
: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,
...
...
This diff is collapsed.
Click to expand it.
core/picker.py
+
5
−
8
View file @
bb969b30
...
...
@@ -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
]):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment