Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
alibylite
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
alibylite
Commits
792fb895
Commit
792fb895
authored
2 years ago
by
Alán Muñoz
Browse files
Options
Downloads
Patches
Plain Diff
refactor(lineageprocess): add lineage requirements
parent
73b8b97f
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/postprocessor/core/processes/lineageprocess.py
+35
-6
35 additions, 6 deletions
src/postprocessor/core/processes/lineageprocess.py
with
35 additions
and
6 deletions
src/postprocessor/core/processes/lineageprocess.py
+
35
−
6
View file @
792fb895
import
typing
as
t
from
abc
import
abstractmethod
import
numpy
as
np
import
numpy
as
np
import
pandas
as
pd
import
pandas
as
pd
from
agora.abc
import
ParametersABC
from
agora.abc
import
ParametersABC
from
agora.utils.lineage
import
group_matrix
from
postprocessor.core.abc
import
PostProcessABC
from
postprocessor.core.abc
import
PostProcessABC
...
@@ -21,11 +25,6 @@ class LineageProcess(PostProcessABC):
...
@@ -21,11 +25,6 @@ class LineageProcess(PostProcessABC):
def
__init__
(
self
,
parameters
:
LineageProcessParameters
):
def
__init__
(
self
,
parameters
:
LineageProcessParameters
):
super
().
__init__
(
parameters
)
super
().
__init__
(
parameters
)
def
run
(
self
,
):
pass
def
filter_signal_cells
(
self
,
signal
:
pd
.
DataFrame
):
def
filter_signal_cells
(
self
,
signal
:
pd
.
DataFrame
):
"""
"""
Use casting to filter cell ids in signal and lineage
Use casting to filter cell ids in signal and lineage
...
@@ -44,3 +43,33 @@ class LineageProcess(PostProcessABC):
...
@@ -44,3 +43,33 @@ class LineageProcess(PostProcessABC):
)
)
return
self
.
lineage
[
mo_av
&
da_av
]
return
self
.
lineage
[
mo_av
&
da_av
]
@abstractmethod
def
run
(
self
,
data
:
pd
.
DataFrame
,
mother_bud_ids
:
t
.
Dict
[
t
.
Tuple
[
int
],
t
.
Collection
[
int
]],
*
args
,
):
pass
@classmethod
def
as_function
(
cls
,
data
:
pd
.
DataFrame
,
lineage
:
t
.
Union
[
t
.
Dict
[
t
.
Tuple
[
int
],
t
.
List
[
int
]]],
*
extra_data
,
**
kwargs
,
):
"""
Overrides PostProcess.as_function classmethod.
Lineage functions require lineage information to be passed if run as function.
"""
if
isinstance
(
lineage
,
np
.
ndarray
):
lineage
=
group_matrix
(
lineage
,
n_keys
=
2
)
parameters
=
cls
.
default_parameters
(
**
kwargs
)
return
cls
(
parameters
=
parameters
).
run
(
data
,
mother_bud_ids
=
lineage
,
*
extra_data
)
# super().as_function(data, *extra_data, lineage=lineage, **kwargs)
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