cell-annotation
GitHub基于CellTypist和marker基因的单细胞RNA测序自动标注技能,提供聚类与单细胞级别标签、置信度评估及结果导出。
Trigger Scenarios
Install
npx skills add Runchuan-BU/BioClaw --skill cell-annotation -g -y
SKILL.md
Frontmatter
{
"name": "cell-annotation",
"tool_type": "python",
"description": "Automated and marker-guided single-cell cell type annotation using CellTypist, marker review, reference transfer, and confidence-aware label curation.",
"primary_tool": "CellTypist"
}
Cell Annotation
Version Compatibility
Reference examples assume:
scanpy1.10+celltypist1.6+pandas2.2+
Before using code patterns, verify installed versions match the environment:
- Python:
python -c "import scanpy, celltypist; print(scanpy.__version__, celltypist.__version__)" - If APIs differ, inspect the installed docs and adapt the pattern instead of retrying unchanged.
Overview
Use this skill when the user wants cluster labels or per-cell labels for scRNA-seq. The default stance is:
- inspect markers first
- run reference-based annotation
- keep uncertainty explicit
- export both raw predicted labels and a curated final label column
When To Use This Skill
- clusters already exist and need biological labels
- the dataset has a relevant reference atlas or known marker panels
- the user wants CellTypist or similar automated annotation
Quick Route
- If clusters are unstable or clearly QC-driven, fix preprocessing before annotation.
- If the atlas mismatch is severe, prefer broad lineage labels over overconfident fine labels.
- If multiple methods disagree, mark labels as uncertain instead of forcing a consensus.
Progressive Disclosure
- Read technical_reference.md for strategy selection, confidence interpretation, and disagreement handling.
- Read commands_and_thresholds.md for concrete CellTypist code, score thresholds, and output columns.
Default Rules
- Never accept automated labels without checking marker expression.
- Keep per-cell predictions and cluster-level curated labels separate.
- Use
Unknown,Uncertain, orAmbiguouswhen evidence is weak. - Document the reference model or atlas used.
Expected Inputs
- processed
h5adwith clusters and embeddings - marker gene lists or known lineage markers
- optional reference atlas or model
Expected Outputs
results/annotated.h5adresults/cell_labels.tsvresults/cluster_annotation_summary.tsvfigures/umap_cell_types.pdffigures/marker_dotplot.pdf
Preferred Tools
scanpycelltypistpandasmatplotlib
Starter Pattern
import scanpy as sc
import celltypist
adata = sc.read_h5ad("results/processed.h5ad")
pred = celltypist.annotate(adata, model="Immune_All_Low.pkl", majority_voting=True)
adata = pred.to_adata()
adata.obs["cell_type_raw"] = adata.obs["majority_voting"]
adata.obs["cell_type_confidence"] = adata.obs["conf_score"]
adata.write("results/annotated.h5ad")
Workflow
1. Inspect markers before automation
Check canonical lineage markers on UMAP, dotplots, or heatmaps. If clusters do not support a plausible biological separation, do not lock in labels yet.
2. Choose the annotation level
- broad lineage labels when the reference is imperfect
- fine-grained labels only when markers and reference agree
- cluster-level labels for noisy or sparse datasets
3. Run reference-based annotation
Use CellTypist or another compatible reference transfer method. Store:
- raw label
- confidence score
- model name
4. Curate with markers and cluster context
Review top markers per cluster and compare them against predicted labels. Rename or collapse labels if fine categories are not robust.
5. Export both raw and final labels
At minimum, keep:
cell_type_rawcell_type_confidencecell_type_final
Output Artifacts
results/annotated.h5adresults/cell_labels.tsvresults/cluster_annotation_summary.tsvfigures/umap_cell_types.pdffigures/marker_dotplot.pdf
Quality Review
CellTypist conf_score > 0.5is usually comfortable for a provisional label.0.2-0.5should be manually reviewed against markers.< 0.2should usually remainUnknownorUncertainunless markers are compelling.- Every final label should have either marker support, reference support, or both.
Anti-Patterns
- assigning fine-grained labels only because the model returned them
- overwriting raw labels so the original prediction is lost
- treating low-confidence single-cell labels as publication-ready without review
- hiding disagreements between marker evidence and reference transfer
Related Skills
- scRNA Preprocessing And Clustering
- Cell Communication
- Trajectory And Lineage
Optional Supplements
scanpyscvi-tools
Version History
- a79b8c4 Current 2026-07-25 11:44


