facs4/4 Jupyter Notebook lamindata

Analyze the dataset and save a result#

import lamindb as ln
import lnschema_bionty as lb

ln.track()
💡 loaded instance: testuser1/test-facs (lamindb 0.57.2)
💡 notebook imports: lamindb==0.57.2 lnschema_bionty==0.33.0 scanpy==1.9.5
💡 Transform(uid='zzJzdgJ763Dyz8', name='Analyze the dataset and save a result', short_name='facs4', version='0', type=notebook, updated_at=2023-10-23 17:49:59, created_by_id=1)
💡 Run(uid='w50di68ueL9JEN3qEq2s', run_at=2023-10-23 17:49:59, transform_id=4, created_by_id=1)
ln.Dataset.filter().df()
uid name description version hash reference reference_type transform_id run_id file_id storage_id initial_version_id updated_at created_by_id
id
1 HG7Bg6lkY2cosdkjDyF6 My versioned cytometry dataset None 1 e1rTes7lUXcu_bndvHhLbg None None 1 1 1.0 None NaN 2023-10-23 17:49:33 1
2 Xc1PZUKWScQOYhApYhle My versioned cytometry dataset None 2 0L11eUDkSewxgd7vlXD5 None None 2 2 NaN None 1.0 2023-10-23 17:49:47 1
dataset = ln.Dataset.filter(name="My versioned cytometry dataset", version="2").one()
adata = dataset.load(join="inner")
/opt/hostedtoolcache/Python/3.9.18/x64/lib/python3.9/site-packages/anndata/_core/anndata.py:1838: UserWarning: Observation names are not unique. To make them unique, call `.obs_names_make_unique`.
  utils.warn_names_duplicates("obs")

The AnnData has the reference to the individual files in the .obs annotations:

adata.obs.file_id.cat.categories
Int64Index([1, 2], dtype='int64')

By default, the intersection of features is used:

adata.var.index
Index(['Cd4', 'CD8', 'CD3', 'CD27', 'Ccr7', 'CD45RA'], dtype='object')

Let us create a plot:

markers = lb.CellMarker.lookup()
import scanpy as sc

sc.pp.pca(adata)
sc.pl.pca(adata, color=markers.cd8.name, save="_cd8")
WARNING: saving figure to file figures/pca_cd8.pdf
_images/1a5cd40184f54765d280e465188f785571825f3b3b6ae2676d241aa398b96edf.png
file = ln.File("./figures/pca_cd8.pdf", description="My result on CD8")

file.save()
file.view_flow()
_images/93eed48980ba1e8f6a99afd1b54b8dd98897989df63364bff5d05b84ee493c2a.svg

Given the image is part of the notebook, there isn’t an actual need to save it and you can also rely on the report that you’ll create when saving the notebook via the command line via:

lamin save <notebook_path>
# clean up test instance
!lamin delete --force test-facs
!rm -r test-flow
💡 deleting instance testuser1/test-facs
✅     deleted instance settings file: /home/runner/.lamin/instance--testuser1--test-facs.env
✅     instance cache deleted
✅     deleted '.lndb' sqlite file
❗     consider manually deleting your stored data: /home/runner/work/lamin-usecases/lamin-usecases/docs/test-facs
rm: cannot remove 'test-flow': No such file or directory