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

fix(postprocessor): picker no longer returns gen

parent 08fc8e49
No related branches found
No related tags found
No related merge requests found
......@@ -193,6 +193,7 @@ class PostProcessor(ProcessABC):
moset = set([tuple(x) for x in trap_mother])
daset = set([tuple(x) for x in trap_daughter])
picked_set = set([tuple(x) for x in indices])
with h5py.File(self._filename, "a") as f:
merge_events = f["modifiers/merges"][()]
multii = pd.MultiIndex(
......
......@@ -100,7 +100,7 @@ class Picker(LineageProcess):
self._log(f"No lineage assignment")
indices = np.array([])
return np.array(tuple(map(_str_to_int, x)) for x in indices)
return np.array([tuple(map(_str_to_int, x)) for x in indices])
def switch_case(
self,
......
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