Skip to content
Snippets Groups Projects
Commit 2103179a authored by Arin Wongprommoon's avatar Arin Wongprommoon
Browse files

[WIP] change(postproc): datatypes for mothers & daughters in picker

WHY IS THIS CHANGE NEEDED?:
- tuple is dangerous because immutable

WHAT SIDE EFFECTS DOES THIS CHANGE HAVE?:
- yet to see

EVIDENCE THAT COMMIT WORKS:
- yet to see

REFERENCES:
- issue #37
parent dd5c4b36
No related branches found
No related tags found
No related merge requests found
...@@ -102,8 +102,8 @@ class picker(LineageProcess): ...@@ -102,8 +102,8 @@ class picker(LineageProcess):
self.daughters = np.array([]) self.daughters = np.array([])
else: else:
self.mothers, self.daughters = ( self.mothers, self.daughters = (
tuple(self.cells.mothers_daughters[:, 1]), list(self.cells.mothers_daughters[:, 1]),
tuple(self.cells.mothers_daughters[:, 2]), list(self.cells.mothers_daughters[:, 2]),
) )
for alg, op, *params in self.sequence: for alg, op, *params in self.sequence:
if indices: if indices:
......
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