Arboreto
Arboreto is a computational library for inferring gene regulatory networks (GRNs) from gene expression data using paralleli.
Maintainer K-Dense Inc. · Last updated April 1, 2026
AnnData is a Python package for handling annotated data matrices, storing experimental measurements (X) alongside observation metadata (obs), variable metadata (var), and multi-dimensional annotations (obsm, varm, obsp, varp, uns). Originally designed for single-cell genomics through Scanpy, it now serves as a general-purpose framework for any annotated data requiring efficient storage, manipulation, and analysis.
Original source
https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/anndata
Skill Snapshot
Source Doc
Use this skill when:
import anndata as ad
import numpy as np
import pandas as pd
## Minimal creation
X = np.random.rand(100, 2000) # 100 cells × 2000 genes
adata = ad.AnnData(X)
Related skills
Arboreto is a computational library for inferring gene regulatory networks (GRNs) from gene expression data using paralleli.
Cell segmentation from multiplexed tissue images. Covers deep learning (Cellpose, Mesmer) and classical approaches for nuclear and whole-cel…
Automated cell type annotation using reference-based methods including CellTypist, scPred, SingleR, and Azimuth for consistent, reproducible…
Dimensionality reduction and clustering for single-cell RNA-seq using Seurat (R) and Scanpy (Python). Use for running PCA, computing neighbo…