数据与复现单细胞与空间组学FreedomIntelligence/OpenClaw-Medical-Skills数据与复现
BI

bio-single-cell-cell-annotation

维护者 FreedomIntelligence · 最近更新 2026年4月1日

Automated cell type annotation using reference-based methods including CellTypist, scPred, SingleR, and Azimuth for consistent, reproducible cell labeling. Use when automatically annotating cell types using reference datasets.

OpenClawNanoClaw分析处理复现实验bio-single-cell-cell-annotation🧬 bioinformatics (gptomics bio-* suite)bioinformatics — single-cell & spatial omicsautomated

原始来源

FreedomIntelligence/OpenClaw-Medical-Skills

https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-single-cell-cell-annotation

维护者
FreedomIntelligence
许可
MIT
最近更新
2026年4月1日

技能摘要

来自 SKILL.md 的关键信息

2 min

核心说明

  • celltypist.models.models_description()。
  • celltypist.models.download_models(model='Immune_All_Low.pkl')。

原始文档

SKILL.md 摘录

CellTypist (Python)

Goal: Automatically annotate cell types using a pre-trained or custom CellTypist model.

Approach: Load a reference model, predict cell types with majority voting for cluster-level consensus, and add predictions to AnnData.

"Automatically label my cell types" → Apply a trained classifier to assign cell type identities based on transcriptomic similarity to a reference atlas.

import celltypist
import scanpy as sc

adata = sc.read_h5ad('adata_processed.h5ad')

## Load model

model = celltypist.models.Model.load(model='Immune_All_Low.pkl')

## Predict cell types

predictions = celltypist.annotate(adata, model=model, majority_voting=True)

适用场景

  • 适合在automatically annotating cell types ,使用 reference 数据集s时使用。

不适用场景

  • Do not rely on this catalog entry alone ,用于 installation 或 maintenance details。

上游相关技能

  • single-cell/clustering - Manual marker-based annotation
  • single-cell/cell-communication - Use annotated types for CCC
  • single-cell/trajectory-inference - Trajectory on annotated data

相关技能

相关技能

返回目录
AN
数据与复现单细胞与空间组学

AnnData

AnnData is a Python package for handling annotated data matrices, storing experimental measurements (X) alongside observ…

Claude CodeOpenClaw分析处理
K-Dense-AI/claude-scientific-skills查看
AR
数据与复现单细胞与空间组学

Arboreto

Arboreto is a computational library for inferring gene regulatory networks (GRNs) from gene expression data using parall…

Claude CodeOpenClaw分析处理
K-Dense-AI/claude-scientific-skills查看
BI
数据与复现单细胞与空间组学

bio-imaging-mass-cytometry-cell-segmentation

Cell segmentation from multiplexed tissue images. Covers deep learning (Cellpose, Mesmer) and classical approaches for n…

OpenClawNanoClaw分析处理
FreedomIntelligence/OpenClaw-Medical-Skills查看
BI
数据与复现单细胞与空间组学

bio-read-qc-umi-processing

Extract, process, and deduplicate reads using Unique Molecular Identifiers (UMIs) with umi_tools. Use when library prep…

OpenClawNanoClaw分析处理
FreedomIntelligence/OpenClaw-Medical-Skills查看