Markov-modulated ODE simulator for synthetic single-cell splicing datasets.
Project description
markovmodus
Markov-modulated splicing simulator for single-cell U/S counts.
Generate snapshot datasets where a hidden state graph (the support of a continuous-time generator) modulates unspliced->spliced RNA dynamics.
Why this exists
Single-cell RNA sequencing captures each cell only once, so trajectory and velocity methods must infer temporal structure from static snapshots. Without datasets where the true lineage graph is known, it is hard to validate the assumptions those methods make.
markovmodus fills that gap by generating synthetic unspliced/spliced counts with an explicit hidden-state lineage.
Cells hop between phenotypic states according to a continuous-time Markov process, and each state drives its own transcriptional kinetics.
For biologists, think of the hidden states as cellular programs—progenitors, intermediates, terminal fates—with transition rates describing how readily a cell exits one program and commits to another. Within each program, genes produce pre-mRNA that is spliced and degraded, yielding both nascent and mature counts like those used in RNA velocity analyses. Because the simulator records the exact state graph, you can stress-test algorithms that aim to recover branching, cyclic, or linear progressions from single snapshots.
Model
Latent dynamics (state process)
- States indexed z = 1, ..., n with an adjacency mask M (an n-by-n binary matrix) describing the undirected support.
- Generator Q on this support: Q[i, j] > 0 iff M[i, j] = 1, and each row sums to zero via Q[i, i] = -sum_{j != i} Q[i, j].
- Directionality arises from asymmetric off-diagonal rates (Q[i, j] != Q[j, i]).
Emissions (per gene, in state z)
- Linear splicing dynamics with state-specific transcription targets (via the steady-state profile) and global beta (splicing) / gamma (decay):
- dU/dt = alpha_z - beta * U
- dS/dt = beta * U - gamma * S
- Snapshots at time t* can be perturbed by negative-binomial noise (enable by setting
SimulationParameters.dispersion) so counts remain discrete and overdispersed.
Topology encoding via gene sets
- Each state i receives
markers_per_statemarkers. Genes are either unique to one state (reuse cap = 1) or shared by exactly two states (reuse cap = 2). - When sharing is enabled a balanced random sampler selects how many genes each pair of states shares so overlaps stay comparable while never exceeding two states per gene.
- This yields overlap-induced continuity in gene space without introducing higher-order simplices.
Transition Graph Configuration
- Default behaviour uses a fully connected graph with a uniform jump rate set via
SimulationParameters.default_transition_rate(falls back to0.05if omitted). - Provide an explicit
transition_matrix(shape n-by-n, zero diagonal) for arbitrary directed rates; the simulator samples next states proportional to the row's off-diagonal rates. - Example:
custom = np.full((n, n), 0.05, dtype=float) np.fill_diagonal(custom, 0.0) params = SimulationParameters(..., transition_matrix=custom)
Getting Started
- Install from PyPI:
pip install markovmodus
- Or, after cloning this repository, install locally:
pip install .
- Define your simulation settings and run the generator:
from markovmodus import SimulationParameters, simulate_dataset params = SimulationParameters( num_states=5, num_genes=300, num_cells=2000, t_final=30.0, dt=1.0, markers_per_state=120, default_transition_rate=0.08, rng_seed=42, ) adata = simulate_dataset(params) # AnnData with spliced/unspliced layers
- Produce a pandas DataFrame (and optionally persist to CSV):
df = simulate_dataset(params, output="dataframe", save_path="counts.csv")
- Write an AnnData file for Scanpy workflows:
simulate_dataset(params, save_path="snapshot.h5ad", file_format="h5ad")
- Request both views when integrating with pipelines:
adata, df = simulate_dataset(params, output="both")
Documentation
Start with the Introduction for a primer on the biological motivation and simulator design, then dive into the usage guide and API reference.
Example notebooks
Interactive walkthroughs live in notebooks/. Open them locally in Jupyter or your favourite notebook environment to explore model configuration and downstream analysis patterns.
License
MIT licensed. See CITATION.cff for citation details.
Project resources
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file markovmodus-0.1.0.tar.gz.
File metadata
- Download URL: markovmodus-0.1.0.tar.gz
- Upload date:
- Size: 16.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a8926681319147cb3ebc76f8b13d8836fecbe56c4d84bcf8537acc3787c7259
|
|
| MD5 |
c35bb7843e251e065c8d71161283c953
|
|
| BLAKE2b-256 |
5aab4bc473b83537b1bcb6a56bfe30452277e418743a9872c730438883e27832
|
File details
Details for the file markovmodus-0.1.0-py3-none-any.whl.
File metadata
- Download URL: markovmodus-0.1.0-py3-none-any.whl
- Upload date:
- Size: 13.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ecc7c29fc51da10d341744ccfbecdd6435b9f712634cecaffc96a828274234c
|
|
| MD5 |
27e50c64d90d38b609622e7fe7e9ce1e
|
|
| BLAKE2b-256 |
8bc8fa476f575df3900ec4c891c530469d59ddb54aa57f1466a53edea2438ce4
|