Data & ReproSingle-Cell & Spatial OmicsFreedomIntelligence/OpenClaw-Medical-SkillsData & Reproduction
BI

bio-single-cell-lineage-tracing

Maintainer FreedomIntelligence · Last updated April 1, 2026

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

OpenClawNanoClawAnalysisReproductionbio-single-cell-lineage-tracing🧬 bioinformatics (gptomics bio-* suite)bioinformatics — single-cell & spatial omicsreconstruct

Original source

FreedomIntelligence/OpenClaw-Medical-Skills

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

Maintainer
FreedomIntelligence
License
MIT
Last updated
April 1, 2026

Skill Snapshot

Key Details From SKILL.md

2 min

Key Notes

  • Python: cassiopeia.tl.ILPSolver(cas_tree) or GreedySolver for tree reconstruction.
  • Reconstruct cell lineage trees from CRISPR barcodes" → Build phylogenetic trees of cell relationships from lineage barcode mutations to study clonal dynamics and cell fate decisions. Python: cassiopeia.tl.ILPSolver(cas_tree) or GreedySolver for tree reconstruction.
  • tree = cas.data.CassiopeiaTree( character_matrix=char_matrix, cell_meta=cell_metadata ).

Source Doc

Excerpt From 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)

Use cases

  • Use when studying clonal dynamics, cell fate decisions, or developmental trajectories.

Not for

  • Do not rely on this catalog entry alone for installation or maintenance details.

Upstream Related Skills

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

Related skills

Related skills

Back to directory
AN
Data & ReproSingle-Cell & Spatial Omics

AnnData

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

Claude CodeOpenClawAnalysis
K-Dense-AI/claude-scientific-skillsView
AR
Data & ReproSingle-Cell & Spatial Omics

Arboreto

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

Claude CodeOpenClawAnalysis
K-Dense-AI/claude-scientific-skillsView
BI
Data & ReproSingle-Cell & Spatial Omics

bio-imaging-mass-cytometry-cell-segmentation

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

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView
BI
Data & ReproSingle-Cell & Spatial Omics

bio-read-qc-umi-processing

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

OpenClawNanoClawAnalysis
FreedomIntelligence/OpenClaw-Medical-SkillsView