Jupyter Notebook

Analyst’s view#

Here, we’ll take an analysts-centric view of typical file transformations.

If exploring more generally, read this first: Bird’s eye view.

# a lamindb instance containing Bionty schema
!lamin init --storage ./analysis-usecase --schema bionty
Hide code cell output
💡 creating schemas: core==0.46.1 bionty==0.30.0 
✅ saved: User(id='DzTjkKse', handle='testuser1', email='testuser1@lamin.ai', name='Test User1', updated_at=2023-08-28 14:48:53)
✅ saved: Storage(id='vpwXhtSh', root='/home/runner/work/lamin-usecases/lamin-usecases/docs/analysis-usecase', type='local', updated_at=2023-08-28 14:48:53, created_by_id='DzTjkKse')
✅ loaded instance: testuser1/analysis-usecase
💡 did not register local instance on hub (if you want, call `lamin register`)

import lamindb as ln
import lnschema_bionty as lb

lb.settings.species = "human"  # globally set species
lb.settings.auto_save_parents = False
✅ loaded instance: testuser1/analysis-usecase (lamindb 0.51.0)
✅ set species: Species(id='uHJU', name='human', taxon_id=9606, scientific_name='homo_sapiens', updated_at=2023-08-28 14:48:55, bionty_source_id='eRYe', created_by_id='DzTjkKse')
ln.track()
💡 notebook imports: lamindb==0.51.0 lnschema_bionty==0.30.0
✅ saved: Transform(id='eNef4Arw8nNMz8', name='Analyst's view', short_name='analysis-flow', version='0', type=notebook, updated_at=2023-08-28 14:48:55, created_by_id='DzTjkKse')
✅ saved: Run(id='KCdwPsMvYztd6PiNZww7', run_at=2023-08-28 14:48:55, transform_id='eNef4Arw8nNMz8', created_by_id='DzTjkKse')

Track cell types, tissues and diseases#

We fetch an example dataset from LaminDB that has a few cell type, tissue and disease annotations:

Hide code cell content
adata = ln.dev.datasets.anndata_with_obs()
adata
AnnData object with n_obs × n_vars = 40 × 100
    obs: 'cell_type', 'cell_type_id', 'tissue', 'disease'
adata.var_names[:5]
Index(['ENSG00000000003', 'ENSG00000000005', 'ENSG00000000419',
       'ENSG00000000457', 'ENSG00000000460'],
      dtype='object')
adata.obs[["tissue", "cell_type", "disease"]].value_counts()
tissue  cell_type                disease                   
brain   my new cell type         Alzheimer disease             10
heart   hepatocyte               cardiac ventricle disorder    10
kidney  T cell                   chronic kidney disease        10
liver   hematopoietic stem cell  liver lymphoma                10
Name: count, dtype: int64

Processing the dataset#

To track our data transformation we create a new Transform of type “pipeline”:

transform = ln.Transform(
    name="Subset to T-cells and liver lymphoma", version="0.1.0", type="pipeline"
)

Set the current tracking to the new transform:

ln.track(transform)
✅ saved: Transform(id='7KJ4Qg2122Sf3K', name='Subset to T-cells and liver lymphoma', version='0.1.0', type='pipeline', updated_at=2023-08-28 14:49:02, created_by_id='DzTjkKse')
✅ saved: Run(id='dp5IyG0OrPLxWIWTzDfA', run_at=2023-08-28 14:49:02, transform_id='7KJ4Qg2122Sf3K', created_by_id='DzTjkKse')

Get a backed AnnData object#

file = ln.File.filter(key="mini_anndata_with_obs.h5ad").one()
adata = file.backed()
adata
💡 adding file ITAZ4OBYr8Rwwd741QRy as input for run dp5IyG0OrPLxWIWTzDfA, adding parent transform eNef4Arw8nNMz8
AnnDataAccessor object with n_obs × n_vars = 40 × 100
  constructed for the AnnData object mini_anndata_with_obs.h5ad
    obs: ['_index', 'cell_type', 'cell_type_id', 'disease', 'tissue']
    var: ['_index']
adata.obs[["cell_type", "disease"]].value_counts()
cell_type                disease                   
T cell                   chronic kidney disease        10
hematopoietic stem cell  liver lymphoma                10
hepatocyte               cardiac ventricle disorder    10
my new cell type         Alzheimer disease             10
Name: count, dtype: int64

Subset dataset to specific cell types and diseases#

Create the subset:

subset_obs = adata.obs.cell_type.isin(["T cell", "hematopoietic stem cell"]) & (
    adata.obs.disease.isin(["liver lymphoma", "chronic kidney disease"])
)
adata_subset = adata[subset_obs]
adata_subset
AnnDataAccessorSubset object with n_obs × n_vars = 20 × 100
  obs: ['_index', 'cell_type', 'cell_type_id', 'disease', 'tissue']
  var: ['_index']
adata_subset.obs[["cell_type", "disease"]].value_counts()
cell_type                disease               
T cell                   chronic kidney disease    10
hematopoietic stem cell  liver lymphoma            10
Name: count, dtype: int64

This subset can now be registered:

file_subset = ln.File.from_anndata(
    adata_subset.to_memory(),
    key="subset/mini_anndata_with_obs.h5ad",
    var_ref=lb.Gene.ensembl_gene_id,
)
/opt/hostedtoolcache/Python/3.9.17/x64/lib/python3.9/site-packages/anndata/_core/anndata.py:1840: UserWarning: Variable names are not unique. To make them unique, call `.var_names_make_unique`.
  utils.warn_names_duplicates("var")
💡 file will be copied to default storage upon `save()` with key 'subset/mini_anndata_with_obs.h5ad'
💡 parsing feature names of X stored in slot 'var'
💡    using global setting species = human
❗    received 99 unique terms, 1 empty/duplicated term is ignored
99 terms (100.00%) are not validated for ensembl_gene_id: ENSG00000000003, ENSG00000000005, ENSG00000000419, ENSG00000000457, ENSG00000000460, ENSG00000000938, ENSG00000000971, ENSG00000001036, ENSG00000001084, ENSG00000001167, ENSG00000001460, ENSG00000001461, ENSG00000001497, ENSG00000001561, ENSG00000001617, ENSG00000001626, ENSG00000001629, ENSG00000001630, ENSG00000001631, ENSG00000002016, ...
❗    no validated features, skip creating feature set
💡 parsing feature names of slot 'obs'
3 terms (75.00%) are validated for name
1 term (25.00%) is not validated for name: cell_type_id
✅    loaded: FeatureSet(id='Id12iUmc6NEKmuvcz61X', n=3, registry='core.Feature', hash='qH7gHlVJFm1nI66MCBjT', updated_at=2023-08-28 14:49:01, modality_id='2nClQvSa', created_by_id='DzTjkKse')
✅    linked: FeatureSet(id='Id12iUmc6NEKmuvcz61X', n=3, registry='core.Feature', hash='qH7gHlVJFm1nI66MCBjT', updated_at=2023-08-28 14:49:01, modality_id='2nClQvSa', created_by_id='DzTjkKse')
file_subset.save()
✅ storing file 'beeMKwoaaxGjkEgPj9w1' at 'subset/mini_anndata_with_obs.h5ad'

Add labels to features, all of them validate:

cell_types = lb.CellType.from_values(adata.obs.cell_type, lb.CellType.name)
tissues = lb.Tissue.from_values(adata.obs.tissue, lb.Tissue.name)
diseases = lb.Disease.from_values(adata.obs.disease, lb.Disease.name)

file_subset.add_labels(cell_types, feature="cell_type")
file_subset.add_labels(tissues, feature="tissue")
file_subset.add_labels(diseases, feature="disease")
Hide code cell output
✅ loaded 3 CellType records matching name: T cell, hematopoietic stem cell, hepatocyte
did not create CellType record for 1 non-validated name: my new cell type
file_subset.describe()
💡 File(id='beeMKwoaaxGjkEgPj9w1', key='subset/mini_anndata_with_obs.h5ad', suffix='.h5ad', accessor='AnnData', description=None, version=None, size=38992, hash='RgGUx7ndRplZZSmalTAWiw', hash_type='md5', created_at=2023-08-28 14:49:02, updated_at=2023-08-28 14:49:02)

Provenance:
    🗃️ storage: Storage(id='vpwXhtSh', root='/home/runner/work/lamin-usecases/lamin-usecases/docs/analysis-usecase', type='local', updated_at=2023-08-28 14:48:53, created_by_id='DzTjkKse')
    🧩 transform: Transform(id='7KJ4Qg2122Sf3K', name='Subset to T-cells and liver lymphoma', version='0.1.0', type='pipeline', updated_at=2023-08-28 14:49:02, created_by_id='DzTjkKse')
    👣 run: Run(id='dp5IyG0OrPLxWIWTzDfA', run_at=2023-08-28 14:49:02, transform_id='7KJ4Qg2122Sf3K', created_by_id='DzTjkKse')
    👤 created_by: User(id='DzTjkKse', handle='testuser1', email='testuser1@lamin.ai', name='Test User1', updated_at=2023-08-28 14:48:53)
Features:
  obs (metadata):
    🔗 cell_type (3, bionty.CellType): ['hepatocyte', 'T cell', 'hematopoietic stem cell']
    🔗 disease (4, bionty.Disease): ['Alzheimer disease', 'chronic kidney disease', 'liver lymphoma', 'cardiac ventricle disorder']
    🔗 tissue (4, bionty.Tissue): ['heart', 'brain', 'liver', 'kidney']

Examine data lineage#

Common questions that might arise are:

  • Which h5ad file is in the subset subfolder?

  • Which notebook ingested this file?

  • By whom?

  • And which file is its parent?

Let’s answer this using LaminDB:

Query a subsetted .h5ad file containing “hematopoietic stem cell” and “T cell” to learn which h5ad file is in the subset subfolder:

cell_types_bt_lookup = lb.CellType.lookup()
my_subset = ln.File.filter(
    suffix=".h5ad",
    key__startswith="subset",
    cell_types__in=[
        cell_types_bt_lookup.hematopoietic_stem_cell,
        cell_types_bt_lookup.t_cell,
    ],
).first()
my_subset.view_lineage()
https://d33wubrfki0l68.cloudfront.net/768b6674200b343dc9285e65eb70c9654ceabf2c/23d92/_images/0b29c66a12b88665d2efbb010281cadc1e36285b18da15e4d088ac223c77cdde.svg
Hide code cell content
!lamin delete --force analysis-usecase
!rm -r ./analysis-usecase
💡 deleting instance testuser1/analysis-usecase
✅     deleted instance settings file: /home/runner/.lamin/instance--testuser1--analysis-usecase.env
✅     instance cache deleted
✅     deleted '.lndb' sqlite file
❗     consider manually deleting your stored data: /home/runner/work/lamin-usecases/lamin-usecases/docs/analysis-usecase