facs4/4 Jupyter Notebook lamindata

Analyze the collection and save a result#

import lamindb as ln
import bionty as bt

ln.settings.transform.stem_uid = "zzJzdgJ763Dy"
ln.settings.transform.version = "0"
ln.track()
💡 connected lamindb: testuser1/test-facs
💡 notebook imports: bionty==0.42.7 lamindb==0.69.9 scanpy==1.10.1
💡 saved: Transform(uid='zzJzdgJ763Dy6K79', name='Analyze the collection and save a result', key='facs4', version='0', type='notebook', updated_at=2024-04-10 18:57:39 UTC, created_by_id=1)
💡 saved: Run(uid='O1mmxciDx12H4hL4eRRN', transform_id=4, created_by_id=1)
ln.Collection.df()
uid name description version hash reference reference_type transform_id run_id artifact_id visibility created_at updated_at created_by_id
id
2 5s7o3eocen4JolZPLdej My versioned cytometry collection None 2 ZKQxIw0uAvtMtdZk8SAj None None 2 2 None 1 2024-04-10 18:57:29.829277+00:00 2024-04-10 18:57:29.829297+00:00 1
1 5s7o3eocen4JolZP0Nmp My versioned cytometry collection None 1 YEhGFl_7aWOE_xLIZANk None None 1 1 None 1 2024-04-10 18:57:19.668676+00:00 2024-04-10 18:57:19.668698+00:00 1
collection = ln.Collection.filter(
    name="My versioned cytometry collection", version="2"
).one()
adata = collection.load(join="inner")
/opt/hostedtoolcache/Python/3.10.14/x64/lib/python3.10/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.artifact_uid.cat.categories
Index(['CGd4d096XinnjL4zpzh9', 'jn57vqVseqYJ56Cmsxoq'], dtype='object')

By default, the intersection of features is used:

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

Let us create a plot:

markers = bt.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/877564fba303f0546f6fc72d03757043da96aeccc56b42c7bb5c87a7a35b5f3e.png
artifact = ln.Artifact("./figures/pca_cd8.pdf", description="My result on CD8")

artifact.save()
artifact.view_lineage()
_images/9989237f2771c6e105dc6192c955e0171d9bc1b8d0f16d3c8bde9309f6b4fe6c.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
❗ manually delete your stored data: /home/runner/work/lamin-usecases/lamin-usecases/docs/test-facs
rm: cannot remove 'test-flow': No such file or directory