用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/BrainStOrmics/BIA-CellHashtag --skill quality-control命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
DAG-MCTS for cell type annotation. Search space is a DAG (Merge + ReEmbed create multi-parent nodes). Uses P-UCT selection, Soft-Bellman backprop, confidence discounting, and transposition table. Per-iteration tree viz emitted as interactive HTML.
Correct batch effects in single-cell data using Harmony, BBKNN, or ComBat.
Query CellWiki knowledge base for marker genes, cell type ontologies, and tissue-specific cell type constraints.
基于 SOC 职业分类
正在显示 SKILL.md
| name | quality-control |
| description | Compute QC metrics, filter cells, detect doublets for single-cell RNA-seq data. |
| allowed-tools | Read, Bash |
| compatibility | scRNA-seq, snRNA-seq |
Before clustering to remove low-quality cells and doublets.
compute_qc_metrics(adata) -> dictComputes standard QC metrics:
n_genes: number of detected genes per celltotal_counts: total UMI counts per cellpct_mito: percentage of mitochondrial genespct_ribo: percentage of ribosomal genesReturns metrics added to adata.obs: n_genes, total_counts, pct_mito, pct_ribo
Mitochondrial genes detected by prefix "MT-" (human) or "mt-" (mouse). Ribo genes by prefixes "RPS", "RPL" (ribo protein) and "RPSA".
filter_cells(adata, min_genes=200, max_genes=5000, min_counts=500, max_counts=50000, max_mito_pct=20) -> AnnDataFilters cells based on QC thresholds. Returns subsetted AnnData.
detect_doublets(adata, expected_cells=None) -> list[int]Heuristic doublet detection based on gene count outliers.
Cells with n_genes > Q3 + 1.5*IQR flagged as potential doublets.
Returns list of cell indices flagged as doublets.