diff --git a/src/postprocessor/core/reshapers/bud_metric.py b/src/postprocessor/core/reshapers/bud_metric.py index b06bc5b2af3afee727fda2429d42e72b7e5a974e..677375aadff44036a91dde90c2fd123f81204b71 100644 --- a/src/postprocessor/core/reshapers/bud_metric.py +++ b/src/postprocessor/core/reshapers/bud_metric.py @@ -49,7 +49,7 @@ class BudMetric(LineageProcess): """ signal: Daughter-inclusive dataframe - md: Mother-daughters dictionary where key is mother's index and value a list of daugher indices + md: Mother-daughters dictionary where key is mother's index and its values are a list of daughter indices Get fvi (First Valid Index) for all cells Create empty matrix diff --git a/src/postprocessor/core/reshapers/picker.py b/src/postprocessor/core/reshapers/picker.py index f2c4d1e9cf29e0272490356b623f6987b174ea1e..56bace44fdc704abfa820753112f7a530d88a089 100644 --- a/src/postprocessor/core/reshapers/picker.py +++ b/src/postprocessor/core/reshapers/picker.py @@ -115,7 +115,7 @@ class Picker(LineageProcess): case_mgr = { "any_present": lambda s, thresh: any_present(s, 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, "growing": lambda s, thresh: s.diff(axis=1).sum(axis=1) > thresh, }