Arboreto
Arboreto is a computational library for inferring gene regulatory networks (GRNs) from gene expression data using parall…
维护者 K-Dense Inc. · 最近更新 2026年4月1日
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.
原始来源
https://github.com/K-Dense-AI/claude-scientific-skills/tree/main/scientific-skills/anndata
技能摘要
原始文档
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)
相关技能
Arboreto is a computational library for inferring gene regulatory networks (GRNs) from gene expression data using parall…
Cell segmentation from multiplexed tissue images. Covers deep learning (Cellpose, Mesmer) and classical approaches for n…
Automated cell type annotation using reference-based methods including CellTypist, scPred, SingleR, and Azimuth for cons…
Dimensionality reduction and clustering for single-cell RNA-seq using Seurat (R) and Scanpy (Python). Use for running PC…