Skip to main content

Human Neural Organoid Cell Atlas Toolbox

Project description

Tests Pre-commit.ci PyPI Docs Build Downloads

Human Neural Organoid Cell Atlas Toolbox

🛠️ The Swiss Army Knive of the Single Cell Cartographer

This package provides a set of tools we used to generate and analyze the Human Neural Organoid Cell Atlas. Among other things, it provides functions to:

  • Rapidly annotate cell types based on marker genes
  • Map query data to the reference atlas
  • Transfer annotations between datasets
  • Compute 'presence scores' for query data based on the reference atlas
  • Perform differential expression analysis

Installation

The latest release of HNOCA-tools can be installed with pip

pip install hnoca

Quick start

🖋️ Annotation

We developed snapseed to rapidly annotate the HNOCA. It annotates cells based on manually defined sets of marker genes for individual cell types or cell type hierarchies. It is fast (i.e. GPU-accelerated) and simple to enable annotation of very large datasets.

import hnoca.snapseed as snap
from hnoca.snapseed.utils import read_yaml

# Read in the marker genes
marker_genes = read_yaml("marker_genes.yaml")

# Annotate anndata objects
snap.annotate(
    adata,
    marker_genes,
    group_name="clusters",
    layer="lognorm",
)

# Or for more complex hierarchies
snap.annotate_hierarchy(
    adata,
    marker_genes,
    group_name="clusters",
    layer="lognorm",
)

🗺️ Mapping

For reference mapping, we mostly rely on scPoli and scANVI. Based on pretrained models, we here provide a simple interface to map query data to the reference atlas.

import scvi
import hnoca.map as mapping

# Load the reference model
ref_model = scvi.model.SCANVI.load(
    os.path.join("model.pt"),
    adata=ref_adata,
)

# Map query data
mapper = mapping.AtlasMapper(ref_model)
mapper.map_query(query_adata, retrain="partial", max_epochs=100, batch_size=1024)

Now that the query dataset is mapped, we can perform kNN-based label transfer and presence score calculation.

# Compute the weighted kNN
mapper.compute_wknn(k=100)

# Transfer labels
celltype_transfer = mapper.transfer_labels(label_key="cell_type")
presence_scores = mapper.get_presence_scores(split_by="batch")

📊 Differential expression

We have used ANOVA for DE analysis between the HNOCA and the reference atlas. Here, this is implemented as the test_de() function.

import hnoca.stats as stats

# Perform DE analysis
de_df = stats.test_de(
    joint_adata,
    group_key="origin",
    return_coef_group="organoid",
    adjust_method="holm",
)

In addition to DE testing on the atlas itself, we found it useful to treat the atlas as a universal "control" and test for DE w.r.t query datasets. For this, we first compute the matched expression profile for each cell in the query dataset and then test for DE using an F-test.

# Compute matched expression profiles based on mapped data
matched_adata = mapper.get_matched_expression()

# Perform DE analysis
de_df = stats.test_de_paired(
    query_adata,
    matched_adata,
    adjust_method="holm",
)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hnoca-0.2.1.tar.gz (24.6 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hnoca-0.2.1-py3-none-any.whl (49.0 kB view details)

Uploaded Python 3

File details

Details for the file hnoca-0.2.1.tar.gz.

File metadata

  • Download URL: hnoca-0.2.1.tar.gz
  • Upload date:
  • Size: 24.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for hnoca-0.2.1.tar.gz
Algorithm Hash digest
SHA256 ef711fa55cf35f7648a91ee6c97a66c5d3b0e5afbeea3a3032209a6b402aea00
MD5 8eeec4ae980541afe820885cc2c845c4
BLAKE2b-256 6ab1de6e98be4bbc73cfe7db645ec9ac641eb3d9b81000c1a66c3010bf8627c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hnoca-0.2.1.tar.gz:

Publisher: publish.yaml on devsystemslab/HNOCA-tools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hnoca-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: hnoca-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 49.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for hnoca-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 922162bccc02328b7c4cc40175c89996fb166da387b2b6acba29e933665130f1
MD5 dc441b25378a2fbe8c34f35d0b0dfd84
BLAKE2b-256 e6d774eb44fc2a2d050e1bd735c918bb1dea761639c190e21d053574a1b5d297

See more details on using hashes here.

Provenance

The following attestation bundles were made for hnoca-0.2.1-py3-none-any.whl:

Publisher: publish.yaml on devsystemslab/HNOCA-tools

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page