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

fix(pp): Convert lineage to 3d when any found

parent 0004e409
No related branches found
Tags v0.1.59
No related merge requests found
......@@ -160,7 +160,9 @@ class PostProcessor(ProcessABC):
"modifiers/merges", data=[np.array(x) for x in merges]
)
lineage = _assoc_indices_to_3d(self.picker.cells.mothers_daughters)
lineage = self.picker.cells.mothers_daughters
if lineage.any():
lineage = _assoc_indices_to_3d(lineage)
lineage_merged = []
indices = get_index_as_np(record)
......
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