app.model.orm.compartment#
Attributes#
The human-readable names of the properties of a Compartment |
|
The units that properties of a Compartment are measured in |
Classes#
The environment of a particular bioreplicate. |
Module Contents#
- app.model.orm.compartment.PROPERTY_NAMES[source]#
The human-readable names of the properties of a Compartment
- app.model.orm.compartment.PROPERTY_UNITS[source]#
The units that properties of a Compartment are measured in
- class app.model.orm.compartment.Compartment[source]#
Bases:
app.model.orm.orm_base.OrmBaseThe environment of a particular bioreplicate.
There could be multiple of these within the same bioreplicate that form a single biological system, but can be measured separately.
One compartment may change to a different compartment due to a
Perturbation.In the future, this entity may be broken down into a separate “compartment” and “environment”.
- volume: sqlalchemy.orm.Mapped[decimal.Decimal][source]#
- pressure: sqlalchemy.orm.Mapped[decimal.Decimal][source]#
- stirringSpeed: sqlalchemy.orm.Mapped[decimal.Decimal][source]#
- O2: sqlalchemy.orm.Mapped[decimal.Decimal][source]#
- CO2: sqlalchemy.orm.Mapped[decimal.Decimal][source]#
- H2: sqlalchemy.orm.Mapped[decimal.Decimal][source]#
- N2: sqlalchemy.orm.Mapped[decimal.Decimal][source]#
- inoculumConcentration: sqlalchemy.orm.Mapped[decimal.Decimal][source]#
- inoculumVolume: sqlalchemy.orm.Mapped[decimal.Decimal][source]#
- initialPh: sqlalchemy.orm.Mapped[decimal.Decimal][source]#
- initialTemperature: sqlalchemy.orm.Mapped[decimal.Decimal][source]#
- dilutionRate: sqlalchemy.orm.Mapped[decimal.Decimal][source]#
- experimentCompartments: sqlalchemy.orm.Mapped[List[ExperimentCompartment]][source]#
- experiments: sqlalchemy.orm.Mapped[List[Experiment]][source]#
- measurementContexts: sqlalchemy.orm.Mapped[List[MeasurementContext]][source]#
- measurements: sqlalchemy.orm.Mapped[List[Measurement]][source]#