Skip to content
Snippets Groups Projects
Commit 4dd8bc21 authored by pswain's avatar pswain
Browse files

change(picker): rename lineage picking opt

parent 664fcf4c
No related branches found
No related tags found
No related merge requests found
...@@ -102,7 +102,7 @@ class Picker(LineageProcess): ...@@ -102,7 +102,7 @@ class Picker(LineageProcess):
case_mgr = { case_mgr = {
"any_present": lambda s, thresh: any_present(s, thresh), "any_present": lambda s, thresh: any_present(s, thresh),
"present": lambda s, thresh: s.notna().sum(axis=1) > thresh, "present": lambda s, thresh: s.notna().sum(axis=1) > thresh,
"nonstoply_present": lambda s, thresh: s.apply(thresh, axis=1) "continuously_present": lambda s, thresh: s.apply(thresh, axis=1)
> thresh, > thresh,
"growing": lambda s, thresh: s.diff(axis=1).sum(axis=1) > thresh, "growing": lambda s, thresh: s.diff(axis=1).sum(axis=1) > thresh,
} }
......
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