owmeta.cell module¶
-
class
owmeta.cell.Cell(name=None, lineageName=None, **kwargs)[source]¶ Bases:
owmeta.biology.BiologyTypeA biological cell.
All cells with the same
nameare considered to be the same object.Parameters: Examples
>>> from owmeta_core.quantity import Quantity >>> c = Cell(lineageName="AB plapaaaap", ... divisionVolume=Quantity("600","(um)^3"))
-
blast()[source]¶ Return the blast name.
Example:
>>> c = Cell(name="ADAL", lineageName='AB ') >>> c.blast() 'AB'
Note that this isn’t a
Property. It returns the blast cell part of alineageNamevalue.
-
description¶ A description of the cell
-
divisionVolume¶ The volume of the cell at division
-
lineageName¶ The lineageName of the cell
-
name¶ The ‘adult’ name of the cell typically used by biologists when discussing C. elegans
-