CE
Automation
cellular-senescence-agent
Cellular senescence analysis: marker scoring, SASP profiling, tissue aging assessment.
FreedomIntelligence/OpenClaw-Medical-SkillsView
Maintainer FreedomIntelligence · Last updated April 1, 2026
spatial-preprocessing.
Original source
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/spatial-preprocessing
Skill Snapshot
Source Doc
print(adata.obs[['total_counts', 'n_genes_by_counts']].describe()) print(adata.var[['total_counts', 'n_cells_by_counts']].describe())
## Mark mitochondrial genes
adata.var['mt'] = adata.var_names.str.startswith('MT-')
## Calculate percent mitochondrial
sc.pp.calculate_qc_metrics(adata, qc_vars=['mt'], inplace=True)
print(f"Mean MT%: {adata.obs['pct_counts_mt'].mean():.1f}")
Related skills
Cellular senescence analysis: marker scoring, SASP profiling, tissue aging assessment.
consensus-sequences.
A user may ask you to create, edit, or analy.
filtering-best-practices.