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

bugfix root_dataset

Former-commit-id: 6465f4f1f19346399f2f51af540f540af7ff8279
parent 971de6af
No related branches found
No related tags found
No related merge requests found
......@@ -14,7 +14,7 @@ class Signal(BridgeH5):
def __getitem__(self, dataset):
dset = self._hdf[dataset][()]
attrs = self._hdf[dataset].attrs
first_dataset = dataset.split("/")[1] + "/"
first_dataset = dataset.split("/")[0] + "/"
timepoints = self._hdf[first_dataset].attrs["processed_timepoints"]
if "cell_label" in self._hdf[dataset].attrs:
......
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