Standardize metadata on-the-fly#

This use cases runs on a LaminDB instance with populated CellType and Pathway registries. Make sure you run the GO Ontology notebook before executing this use case.

Here, we demonstrate how to standardize the metadata on-the-fly during cell type annotation and pathway enrichment analysis using these two registries.

For more information, see:

!lamin load use-cases-registries
πŸ’‘ found cached instance metadata: /home/runner/.lamin/instance--testuser1--use-cases-registries.env
πŸ’‘ connected lamindb: testuser1/use-cases-registries
import lamindb as ln
import bionty as bt
from lamin_usecases import datasets as ds
import scanpy as sc
import matplotlib.pyplot as plt
import celltypist
import gseapy as gp
πŸ’‘ connected lamindb: testuser1/use-cases-registries
sc.settings.set_figure_params(dpi=50, facecolor="white")
ln.transform.stem_uid = "hsPU1OENv0LS"
ln.transform.version = "0"
ln.track()
πŸ’‘ notebook imports: bionty==0.42.4 celltypist==1.6.2 gseapy==1.1.2 lamin_usecases==0.0.1 lamindb==0.69.2 matplotlib==3.8.3 scanpy==1.10.0
πŸ’‘ saved: Transform(uid='hsPU1OENv0LS6K79', name='Standardize metadata on-the-fly', key='analysis-registries', version='0', type=notebook, updated_at=2024-03-28 12:06:32 UTC, created_by_id=1)
πŸ’‘ saved: Run(uid='gXrNfoGOcnpilj0Wl9aR', transform_id=1, created_by_id=1)

An interferon-beta treated dataset#

A small peripheral blood mononuclear cell dataset that is split into control and stimulated groups. The stimulated group was treated with interferon beta.

Let’s load the dataset and perform some preprocessing:

adata = ds.anndata_seurat_ifnb(preprocess=False, populate_registries=True)
adata


AnnData object with n_obs Γ— n_vars = 13999 Γ— 9939
    obs: 'stim'
    var: 'symbol'
sc.pp.normalize_total(adata, target_sum=1e4)
sc.pp.log1p(adata)
sc.pp.highly_variable_genes(adata, n_top_genes=2000)
sc.pp.pca(adata, n_comps=20)
sc.pp.neighbors(adata, n_pcs=10)
sc.tl.umap(adata)

Analysis: cell type annotation using CellTypist#

model = celltypist.models.Model.load(model="Immune_All_Low.pkl")
Hide code cell output
2024-03-28 12:07:46,749:INFO - πŸ”Ž No available models. Downloading...
2024-03-28 12:07:46,750:INFO - πŸ“œ Retrieving model list from server https://celltypist.cog.sanger.ac.uk/models/models.json
2024-03-28 12:08:04,417:INFO - πŸ“š Total models in list: 44
2024-03-28 12:08:04,419:INFO - πŸ“‚ Storing models in /home/runner/.celltypist/data/models
2024-03-28 12:08:04,420:INFO - πŸ’Ύ Downloading model [1/44]: Immune_All_Low.pkl
2024-03-28 12:08:09,947:INFO - πŸ’Ύ Downloading model [2/44]: Immune_All_High.pkl
2024-03-28 12:08:10,878:INFO - πŸ’Ύ Downloading model [3/44]: Adult_CynomolgusMacaque_Hippocampus.pkl
2024-03-28 12:08:15,900:INFO - πŸ’Ύ Downloading model [4/44]: Adult_Human_PancreaticIslet.pkl
2024-03-28 12:08:16,646:INFO - πŸ’Ύ Downloading model [5/44]: Adult_Human_Skin.pkl
2024-03-28 12:08:17,487:INFO - πŸ’Ύ Downloading model [6/44]: Adult_Mouse_Gut.pkl
2024-03-28 12:08:18,749:INFO - πŸ’Ύ Downloading model [7/44]: Adult_Mouse_OlfactoryBulb.pkl
2024-03-28 12:08:19,684:INFO - πŸ’Ύ Downloading model [8/44]: Adult_Pig_Hippocampus.pkl
2024-03-28 12:08:20,421:INFO - πŸ’Ύ Downloading model [9/44]: Adult_RhesusMacaque_Hippocampus.pkl
2024-03-28 12:08:21,169:INFO - πŸ’Ύ Downloading model [10/44]: Autopsy_COVID19_Lung.pkl
2024-03-28 12:08:22,010:INFO - πŸ’Ύ Downloading model [11/44]: COVID19_HumanChallenge_Blood.pkl
2024-03-28 12:08:22,952:INFO - πŸ’Ύ Downloading model [12/44]: COVID19_Immune_Landscape.pkl
2024-03-28 12:08:23,799:INFO - πŸ’Ύ Downloading model [13/44]: Cells_Fetal_Lung.pkl
2024-03-28 12:08:25,095:INFO - πŸ’Ύ Downloading model [14/44]: Cells_Intestinal_Tract.pkl
2024-03-28 12:08:31,223:INFO - πŸ’Ύ Downloading model [15/44]: Cells_Lung_Airway.pkl
2024-03-28 12:08:32,170:INFO - πŸ’Ύ Downloading model [16/44]: Developing_Human_Brain.pkl
2024-03-28 12:08:33,009:INFO - πŸ’Ύ Downloading model [17/44]: Developing_Human_Gonads.pkl
2024-03-28 12:08:33,940:INFO - πŸ’Ύ Downloading model [18/44]: Developing_Human_Hippocampus.pkl
2024-03-28 12:08:34,682:INFO - πŸ’Ύ Downloading model [19/44]: Developing_Human_Organs.pkl
2024-03-28 12:08:35,514:INFO - πŸ’Ύ Downloading model [20/44]: Developing_Human_Thymus.pkl
2024-03-28 12:08:36,552:INFO - πŸ’Ύ Downloading model [21/44]: Developing_Mouse_Brain.pkl
2024-03-28 12:08:37,758:INFO - πŸ’Ύ Downloading model [22/44]: Developing_Mouse_Hippocampus.pkl
2024-03-28 12:08:38,502:INFO - πŸ’Ύ Downloading model [23/44]: Fetal_Human_AdrenalGlands.pkl
2024-03-28 12:08:39,147:INFO - πŸ’Ύ Downloading model [24/44]: Fetal_Human_Pancreas.pkl
2024-03-28 12:08:39,990:INFO - πŸ’Ύ Downloading model [25/44]: Fetal_Human_Pituitary.pkl
2024-03-28 12:08:40,821:INFO - πŸ’Ύ Downloading model [26/44]: Fetal_Human_Retina.pkl
2024-03-28 12:08:41,763:INFO - πŸ’Ύ Downloading model [27/44]: Fetal_Human_Skin.pkl
2024-03-28 12:08:42,507:INFO - πŸ’Ύ Downloading model [28/44]: Healthy_Adult_Heart.pkl
2024-03-28 12:08:43,450:INFO - πŸ’Ύ Downloading model [29/44]: Healthy_COVID19_PBMC.pkl
2024-03-28 12:08:44,287:INFO - πŸ’Ύ Downloading model [30/44]: Healthy_Human_Liver.pkl
2024-03-28 12:08:45,052:INFO - πŸ’Ύ Downloading model [31/44]: Healthy_Mouse_Liver.pkl
2024-03-28 12:08:45,795:INFO - πŸ’Ύ Downloading model [32/44]: Human_AdultAged_Hippocampus.pkl
2024-03-28 12:08:46,627:INFO - πŸ’Ύ Downloading model [33/44]: Human_Developmental_Retina.pkl
2024-03-28 12:08:47,369:INFO - πŸ’Ύ Downloading model [34/44]: Human_Embryonic_YolkSac.pkl
2024-03-28 12:08:48,299:INFO - πŸ’Ύ Downloading model [35/44]: Human_IPF_Lung.pkl
2024-03-28 12:08:49,140:INFO - πŸ’Ύ Downloading model [36/44]: Human_Longitudinal_Hippocampus.pkl
2024-03-28 12:08:49,882:INFO - πŸ’Ύ Downloading model [37/44]: Human_Lung_Atlas.pkl
2024-03-28 12:08:50,828:INFO - πŸ’Ύ Downloading model [38/44]: Human_PF_Lung.pkl
2024-03-28 12:08:51,665:INFO - πŸ’Ύ Downloading model [39/44]: Lethal_COVID19_Lung.pkl
2024-03-28 12:08:52,509:INFO - πŸ’Ύ Downloading model [40/44]: Mouse_Dentate_Gyrus.pkl
2024-03-28 12:08:53,444:INFO - πŸ’Ύ Downloading model [41/44]: Mouse_Isocortex_Hippocampus.pkl
2024-03-28 12:08:54,287:INFO - πŸ’Ύ Downloading model [42/44]: Mouse_Postnatal_DentateGyrus.pkl
2024-03-28 12:08:55,219:INFO - πŸ’Ύ Downloading model [43/44]: Nuclei_Lung_Airway.pkl
2024-03-28 12:08:56,245:INFO - πŸ’Ύ Downloading model [44/44]: Pan_Fetal_Human.pkl
predictions = celltypist.annotate(
    adata, model="Immune_All_Low.pkl", majority_voting=True
)
adata.obs["cell_type_celltypist"] = predictions.predicted_labels.majority_voting
2024-03-28 12:08:57,390:INFO - πŸ”¬ Input data has 13999 cells and 9939 genes
2024-03-28 12:08:57,391:INFO - πŸ”— Matching reference genes in the model
2024-03-28 12:08:58,576:INFO - 🧬 3700 features used for prediction
2024-03-28 12:08:58,580:INFO - βš–οΈ Scaling input data
2024-03-28 12:08:59,102:INFO - πŸ–‹οΈ Predicting labels
2024-03-28 12:08:59,294:INFO - βœ… Prediction done!
2024-03-28 12:08:59,298:INFO - πŸ‘€ Detected a neighborhood graph in the input object, will run over-clustering on the basis of it
2024-03-28 12:08:59,298:INFO - ⛓️ Over-clustering input data with resolution set to 10
2024-03-28 12:09:09,094:INFO - πŸ—³οΈ Majority voting the predictions
2024-03-28 12:09:09,147:INFO - βœ… Majority voting done!
bt.CellType.inspect(adata.obs["cell_type_celltypist"]);
❗ received 13 unique terms, 13986 empty/duplicated terms are ignored
❗ 13 terms (100.00%) are not validated for name: Intermediate macrophages, B cells, Tcm/Naive helper T cells, Tem/Trm cytotoxic T cells, Non-classical monocytes, Tem/Effector helper T cells, Regulatory T cells, Tcm/Naive cytotoxic T cells, CD16+ NK cells, pDC, DC2, DC, Classical monocytes
   detected 2 CellType terms in Bionty as synonyms: 'pDC', 'DC2'
β†’  add records from Bionty to your CellType registry via .from_values()
   couldn't validate 13 terms: 'Tem/Trm cytotoxic T cells', 'Classical monocytes', 'Non-classical monocytes', 'Tem/Effector helper T cells', 'Regulatory T cells', 'pDC', 'DC2', 'Intermediate macrophages', 'DC', 'CD16+ NK cells', 'Tcm/Naive cytotoxic T cells', 'Tcm/Naive helper T cells', 'B cells'
β†’  if you are sure, create new records via ln.CellType() and save to your registry
adata.obs["cell_type_celltypist"] = bt.CellType.standardize(
    adata.obs["cell_type_celltypist"]
)
❗ found 2 synonyms in Bionty: ['pDC', 'DC2']
   please add corresponding CellType records via `.from_values(['plasmacytoid dendritic cell'])`
# Register cell type of found synonym
bt.CellType.from_public(name='plasmacytoid dendritic cell').save()
❗ now recursing through parents: this only happens once, but is much slower than bulk saving
sc.pl.umap(
    adata,
    color=["cell_type_celltypist", "stim"],
    frameon=False,
    legend_fontsize=10,
    wspace=0.4,
)
... storing 'cell_type_celltypist' as categorical
_images/8f548bbb81c0cb166150d41bbaef244c00e5bcdb70a2929a009367ba7492dd2f.png

Analysis: Pathway enrichment analysis using Enrichr#

This analysis is based on the GSEApy scRNA-seq Example.

First, we compute differentially expressed genes using a Wilcoxon test between stimulated and control cells.

# compute differentially expressed genes
sc.tl.rank_genes_groups(
    adata,
    groupby="stim",
    use_raw=False,
    method="wilcoxon",
    groups=["STIM"],
    reference="CTRL",
)

rank_genes_groups_df = sc.get.rank_genes_groups_df(adata, "STIM")
rank_genes_groups_df.head()
names scores logfoldchanges pvals pvals_adj
0 ISG15 99.456024 7.132557 0.0 0.0
1 ISG20 96.736435 5.074106 0.0 0.0
2 IFI6 94.972366 5.828606 0.0 0.0
3 IFIT3 92.482170 7.432235 0.0 0.0
4 IFIT1 90.698975 8.053393 0.0 0.0

Next, we filter out up/down-regulated differentially expressed gene sets:

degs_up = rank_genes_groups_df[
    (rank_genes_groups_df["logfoldchanges"] > 0)
    & (rank_genes_groups_df["pvals_adj"] < 0.05)
]
degs_dw = rank_genes_groups_df[
    (rank_genes_groups_df["logfoldchanges"] < 0)
    & (rank_genes_groups_df["pvals_adj"] < 0.05)
]

degs_up.shape, degs_dw.shape
((542, 5), (935, 5))

Run pathway enrichment analysis on DEGs and plot top 10 pathways:

enr_up = gp.enrichr(degs_up.names, gene_sets="GO_Biological_Process_2023").res2d
gp.dotplot(enr_up, figsize=(2, 3), title="Up", cmap=plt.cm.autumn_r);
_images/e0825cef5412ac47a3e8c7f1eb86f587d64db42d9c8a30e20dcb7b45b2d640e4.png
enr_dw = gp.enrichr(degs_dw.names, gene_sets="GO_Biological_Process_2023").res2d
gp.dotplot(enr_dw, figsize=(2, 3), title="Down", cmap=plt.cm.winter_r);
_images/fd35c71ecc27ef5fe79843986657e41d017cd4a1f9022d9b421ae1535f894bfc.png

Register analyzed dataset and annotate with metadata#

Register new features and labels (check out more details here):

new_features = ln.Feature.from_df(adata.obs)
ln.save(new_features)
new_labels = [ln.ULabel(name=i) for i in adata.obs["stim"].unique()]
ln.save(new_labels)
features = ln.Feature.lookup()

Register dataset using a Artifact object:

artifact = ln.Artifact.from_anndata(
    adata,
    description="seurat_ifnb_activated_Bcells",
)
artifact.save()
artifact.features.add_from_anndata(
    var_field=bt.Gene.symbol,
    organism="human", # optionally, globally set organism via bt.settings.organism = "human"
)

Querying metadata#

artifact.describe()
Artifact(uid='RcLhadvWMAkLosxOK1pd', suffix='.h5ad', accessor='AnnData', description='seurat_ifnb_activated_Bcells', size=215037525, hash='7DtebQpY9k5I__S9uL-4V8', hash_type='sha1-fl', visibility=1, key_is_virtual=True, updated_at=2024-03-28 12:09:28 UTC)

Provenance:
  πŸ—ƒοΈ storage: Storage(uid='Hb4pZJpW', root='/home/runner/work/lamin-usecases/lamin-usecases/docs/use-cases-registries', type='local', updated_at=2024-03-28 12:05:44 UTC, created_by_id=1)
  πŸ’« transform: Transform(uid='hsPU1OENv0LS6K79', name='Standardize metadata on-the-fly', key='analysis-registries', version='0', type=notebook, updated_at=2024-03-28 12:06:32 UTC, created_by_id=1)
  πŸ‘£ run: Run(uid='gXrNfoGOcnpilj0Wl9aR', started_at=2024-03-28 12:06:32 UTC, is_consecutive=True, transform_id=1, created_by_id=1)
  πŸ‘€ created_by: User(uid='DzTjkKse', handle='testuser1', name='Test User1', updated_at=2024-03-28 12:05:44 UTC)
Features:
  var: FeatureSet(uid='OuPXjl5S8LKAHAF5GFhO', n=11281, type='number', registry='bionty.Gene', hash='-d89fi2aGbA60WBspBD3', updated_at=2024-03-28 12:09:28 UTC, created_by_id=1)
    'UTP6', 'TAF9B', 'TEF', 'GPT2', 'IGF2BP2', 'PPIF', 'B4GALT4', 'RNF144A', 'HERC2', 'HERC2', 'HERC2', 'MFAP1', 'IKZF5', 'SVIP', 'CPSF4', 'CTNNBIP1', 'HYLS1', 'BAHD1', 'SPIN3', 'NOXA1', ...
  obs: FeatureSet(uid='5vnUYXC2o6ZAssQkzwE5', n=2, registry='core.Feature', hash='rwDHuwAl4IkXs8_I5vhJ', updated_at=2024-03-28 12:09:28 UTC, created_by_id=1)
    πŸ”— stim (2, core.ULabel): 'STIM', 'CTRL'
    πŸ”— cell_type_celltypist (1, bionty.CellType): 'plasmacytoid dendritic cell'
  STIM-up-DEGs: FeatureSet(uid='3mIyRuy1ti6lqveIZCMD', name='Up-regulated DEGs STIM vs CTRL', n=661, type='category', registry='bionty.Gene', hash='A3HFmrSx-_j2sO87CWI1', updated_at=2024-03-28 12:09:30 UTC, created_by_id=1)
    'IL1RN', 'DERL1', 'CASP1', 'EBAG9', 'TBC1D1', 'MTHFD2', 'FBXO7', 'HLA-F', 'HLA-F', 'HLA-F', 'HLA-F', 'HLA-F', 'HLA-F', 'HLA-F', 'ADAR', 'IL15RA', 'IGFBP4', 'STX11', 'EHD4', 'FYB1', ...
  STIM-down-DEGs: FeatureSet(uid='ybLcIPAnTwE4LpzJdm1o', name='Down-regulated DEGs STIM vs CTRL', n=1092, type='category', registry='bionty.Gene', hash='IBh81Kxj1gCCU95dIP1L', updated_at=2024-03-28 12:09:30 UTC, created_by_id=1)
    'BAX', 'PPIF', 'DAZAP2', 'NPL', 'CD63', 'CLPP', 'COX7A2L', 'CTNNBIP1', 'FDX1', 'RPS26', 'S100A11', 'ALOX5AP', 'BRMS1', 'SLC7A11', 'SLC2A3', 'SSNA1', 'TALDO1', 'UQCRC2', 'IDS', 'DDX46', ...
Labels:
  🏷️ cell_types (1, bionty.CellType): 'plasmacytoid dendritic cell'
  🏷️ ulabels (2, core.ULabel): 'STIM', 'CTRL'

Querying cell types#

Querying for cell types contains β€œB cell” in the name:

bt.CellType.filter(name__contains="B cell").df().head()
uid name ontology_id abbr synonyms description created_at updated_at public_source_id created_by_id
id

Querying for all artifacts annotated with a cell type:

celltypes = bt.CellType.lookup()
celltypes.plasmacytoid_dendritic_cell
CellType(uid='3JO0EdVd', name='plasmacytoid dendritic cell', ontology_id='CL:0000784', synonyms='type 2 DC|pDC|interferon-producing cell|IPC|T-associated plasma cell|plasmacytoid T cell|DC2|plasmacytoid monocyte|lymphoid dendritic cell', description='A Dendritic Cell Type Of Distinct Morphology, Localization, And Surface Marker Expression (Cd123-Positive) From Other Dendritic Cell Types And Associated With Early Stage Immune Responses, Particularly The Release Of Physiologically Abundant Amounts Of Type I Interferons In Response To Infection.', updated_at=2024-03-28 12:09:10 UTC, public_source_id=21, created_by_id=1)
ln.Artifact.filter(cell_types=celltypes.plasmacytoid_dendritic_cell).df()
uid storage_id key suffix accessor description version size hash hash_type n_objects n_observations transform_id run_id visibility key_is_virtual created_at updated_at created_by_id
id
1 RcLhadvWMAkLosxOK1pd 1 None .h5ad AnnData seurat_ifnb_activated_Bcells None 215037525 7DtebQpY9k5I__S9uL-4V8 sha1-fl None None 1 1 1 True 2024-03-28 12:09:27.255390+00:00 2024-03-28 12:09:28.742372+00:00 1

Querying pathways#

Querying for pathways contains β€œinterferon-beta” in the name:

bt.Pathway.filter(name__contains="interferon-beta").df()
uid name ontology_id abbr synonyms description public_source_id created_at updated_at created_by_id
id
684 1l4z0v8W cellular response to interferon-beta GO:0035458 None cellular response to fibroblast interferon|cel... Any Process That Results In A Change In State ... 47 2024-03-28 12:05:57.084139+00:00 2024-03-28 12:05:57.084148+00:00 1
2130 1NzHDJDi negative regulation of interferon-beta production GO:0032688 None down regulation of interferon-beta production|... Any Process That Stops, Prevents, Or Reduces T... 47 2024-03-28 12:05:57.230161+00:00 2024-03-28 12:05:57.230169+00:00 1
3127 3x0xmK1y positive regulation of interferon-beta production GO:0032728 None positive regulation of IFN-beta production|up-... Any Process That Activates Or Increases The Fr... 47 2024-03-28 12:05:57.335455+00:00 2024-03-28 12:05:57.335464+00:00 1
4334 54R2a0el regulation of interferon-beta production GO:0032648 None regulation of IFN-beta production Any Process That Modulates The Frequency, Rate... 47 2024-03-28 12:05:57.458716+00:00 2024-03-28 12:05:57.458725+00:00 1
4953 3VZq4dMe response to interferon-beta GO:0035456 None response to fiblaferon|response to fibroblast ... Any Process That Results In A Change In State ... 47 2024-03-28 12:05:57.637344+00:00 2024-03-28 12:05:57.637354+00:00 1

Query pathways from a gene:

bt.Pathway.filter(genes__symbol="KIR2DL1").df()
uid name ontology_id abbr synonyms description public_source_id created_at updated_at created_by_id
id
1346 7S7qlEkG immune response-inhibiting cell surface recept... GO:0002767 None immune response-inhibiting cell surface recept... The Series Of Molecular Signals Initiated By A... 47 2024-03-28 12:05:57.151066+00:00 2024-03-28 12:05:57.151077+00:00 1

Query artifacts from a pathway:

ln.Artifact.filter(feature_sets__pathways__name__icontains="interferon-beta").first()
Artifact(uid='RcLhadvWMAkLosxOK1pd', suffix='.h5ad', accessor='AnnData', description='seurat_ifnb_activated_Bcells', size=215037525, hash='7DtebQpY9k5I__S9uL-4V8', hash_type='sha1-fl', visibility=1, key_is_virtual=True, updated_at=2024-03-28 12:09:28 UTC, storage_id=1, transform_id=1, run_id=1, created_by_id=1)

Query featuresets from a pathway to learn from which geneset this pathway was computed:

pathway = bt.Pathway.filter(ontology_id="GO:0035456").one()
pathway
Pathway(uid='3VZq4dMe', name='response to interferon-beta', ontology_id='GO:0035456', synonyms='response to fiblaferon|response to fibroblast interferon|response to interferon beta', description='Any Process That Results In A Change In State Or Activity Of A Cell Or An Organism (In Terms Of Movement, Secretion, Enzyme Production, Gene Expression, Etc.) As A Result Of An Interferon-Beta Stimulus. Interferon-Beta Is A Type I Interferon.', updated_at=2024-03-28 12:05:57 UTC, public_source_id=47, created_by_id=1)
degs = ln.FeatureSet.filter(pathways__ontology_id=pathway.ontology_id).one()

Now we can get the list of genes that are differentially expressed and belong to this pathway:

contributing_genes = pathway.genes.all() & degs.genes.all()
contributing_genes.list("symbol")
['IFI16',
 'PLSCR1',
 'IFITM3',
 'PNPT1',
 'STAT1',
 'AIM2',
 'BST2',
 'IFITM2',
 'XAF1',
 'OAS1',
 'IRF1',
 'IFITM1',
 'CALM1',
 'MNDA',
 'SHFL']
# clean up test instance
!lamin delete --force use-cases-registries
!rm -r ./use-cases-registries
Hide code cell output
πŸ’‘ deleting instance testuser1/use-cases-registries
❗ manually delete your stored data: /home/runner/work/lamin-usecases/lamin-usecases/docs/use-cases-registries