omicverse-single-cell-lda-topic-clustering
Installation
SKILL.md
OmicVerse Single-Cell LDA Topic Clustering
Goal
Turn the notebook's MIRA-backed topic modeling section into a reusable job: fit an LDA topic model on count-like single-cell data, predict topic usage, and optionally derive hard cluster labels or RFC-based labels.
Quick Workflow
- Inspect whether the data still has a count layer and a highly-variable-feature flag.
- Choose
feature_type,learning_rate, and whether to runondisk=Falseorondisk=True. - Construct
LDA_topic(...), then decide how many topics to fit. - Run
predicted(num_topics=...)to createLDA_cluster. - If the user wants harder classification on an embedding, run
get_results_rfc(...)with explicituse_repandLDA_threshold.