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

bio-single-cell-lineage-tracing

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

Reconstruct cell lineage trees from CRISPR barcode tracing or mitochondrial mutations. Use when studying clonal dynamics, cell fate decisions, or developmental trajectories.

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

原始来源

FreedomIntelligence/OpenClaw-Medical-Skills

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

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

技能摘要

来自 SKILL.md 的关键信息

2 min

核心说明

  • Python:cassiopeia.tl.ILPSolver(cas_tree) 或 GreedySolver ,用于 tree reconstruction。
  • Reconstruct cell lineage trees ,面向 CRISPR barcodes" → Build phylogenetic trees of cell relationships ,面向 lineage barcode mutations to study clonal dynamics 、 cell fate decisions. Python:cassiopeia.tl.ILPSolver(cas_tree) 或 GreedySolver ,用于 tree reconstruction。
  • tree = cas.data.CassiopeiaTree( character_matrix=char_matrix,cell_meta=cell_metadata )。

原始文档

SKILL.md 摘录

Cassiopeia Tree Reconstruction

Goal: Reconstruct a cell lineage tree from CRISPR barcode character matrices to reveal clonal relationships among single cells.

Approach: Load a character matrix (cells x barcode sites with mutation states), create a CassiopeiaTree object, then solve with a greedy or ILP maximum parsimony solver.

import cassiopeia as cas
import numpy as np

## Check data quality

print(f'Cells: {tree.n_cell}')
print(f'Characters: {tree.n_character}')
print(f'Missing fraction: {(char_matrix == -1).mean():.2%}')

## Reconstruct tree with greedy solver

solver = cas.solver.VanillaGreedySolver()
solver.solve(tree)

适用场景

  • 适合在studying clonal dynamics,cell fate decisions,或 developmental trajectories时使用。

不适用场景

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

上游相关技能

  • single-cell/trajectory-inference - Pseudotime inference
  • single-cell/preprocessing - Preprocessing
  • phylogenetics/modern-tree-inference - Tree inference concepts
  • single-cell/clustering - Cell type assignment

相关技能

相关技能

返回目录
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查看