wetlab

Basic wetlab entities [source].

Install and mount wetlab in a new instance:

>>> pip install wetlab
>>> lamin init --storage ./test-wetlab --schema bionty,wetlab

Import the package:

>>> import wetlab as wl

Create records:

>>> compound_treatment = wl.CompoundTreatment(
...    name="Aspirin treatment day 1",
... ).save()

Registries:

Experiment()

Models a wetlab experiment.

Biosample()

Models a specimen derived from an organism, such as tissue, blood, or cells.

Techsample()

Models technical samples which represent a processed or derived sample in a lab created from raw biological materials.

CombinationTreatment()

Combination of several Treatments.

CompoundTreatment()

Models compound treatments such as drugs.

EnvironmentalTreatment()

Models environmental perturbations such as heat, acid, or smoke treatments.

GeneticTreatment()

Models Genetic perturbations such as CRISPR.

TreatmentTarget()

Models treatment targets such as Gene, Pathway, and Protein.

Well()

Models a well in a wetlab wetlab.Experiment that is part of a microplate.