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

add signal support of df

Former-commit-id: 20ee0b1a98edff6604ec7535e926c67481707265
parent 3d57a36b
No related branches found
No related tags found
No related merge requests found
import pandas as pd
class Parameters:
def __init__(self, merger=None, picker=None, processes=None, branches=None):
self.merger = merger
......@@ -49,15 +52,17 @@ class Signals:
return self._hdf[branch][()]
def branch_to_df(self, branch):
dset = self._hdf[branch].values
dset = self._hdf[branch][()]
attrs = self._hdf[branch].attrs
first_branch = "/" + branch.split("/")[0] + "/"
timepoints = self._hdf[first_branch].attrs["timepoints_processed"]
timepoints = self._hdf[first_branch].attrs["processed_timepoints"]
if "cell_label" in self._hdf[branch]:
ids = pd.MultiIndex.from_tuple(zip(attrs["trap"], attrs["cell_label"]))
if "cell_label" in self._hdf[branch].attrs:
ids = pd.MultiIndex.from_tuples(
zip(attrs["trap"], attrs["cell_label"]), names=["trap", "cell_label"]
)
else:
ids = pd.Inde(attrs["trap"])
ids = pd.Index(attrs["trap"], names=["trap"])
return pd.DataFrame(dset, index=ids, columns=timepoints)
......
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