Main cellpy objects¶
Note
This chapter would benefit from some more love and care. Any help on that would be highly appreciated.
The CellpyCell object¶
flowchart TD
n0[CellpyCell] --> n1[Data]
n0[CellpyCell] --> n2[session metadata]
n0[CellpyCell] --> n3[cellpy metadata]
n0[CellpyCell] --> n4[methods]
The CellpyCell object contains the main methods as well as the actual data:
Data is stored within an instance of the Data class.
flowchart TD
n0[CellpyCell] --> n1[Data]
n1[Data] --> n2["cell metadata (cell)"]
n1[Data] --> n3["cell metadata (test)"]
n1[Data] --> n4[methods]
n1[Data] --> n5[raw]
n1[Data] --> n6[steps]
n1[Data] --> n7[summary]
The Data instance can be reached using the data property:
The Data object¶
The Data object contains the data and the meta-data for the cell characterisation experiment(s).
The cellpy file format¶
As default (cellpy 2.x / file version 9), cellpy stores files as a zip of
parquet tables plus meta.json (.cellpy). Older HDF5 layouts (v4–v8)
remain readable; pass a .h5 path or cellpy_file_format="hdf5" to write
HDF5. See migration v1 to v2.