Generated Genetic Expression Evaluator (GGE): Comprehensive evaluation of generated gene expression data. Computes metrics between real and generated datasets with support for condition matching, train/test splits, and publication-quality visualizations.
Project description
GGE: Generated Genetic Expression Evaluator
Comprehensive evaluation of generated gene expression data against real datasets.
GGE is a modular, object-oriented Python framework for computing metrics between real and generated gene expression datasets stored in AnnData (h5ad) format. It supports condition-based matching, train/test splits, and generates publication-quality visualizations.
Features
Metrics
All metrics are computed per-gene (returning a vector) and aggregated:
| Metric | Description | Direction |
|---|---|---|
| Pearson Correlation | Linear correlation between expression profiles | Higher is better |
| Spearman Correlation | Rank correlation (robust to outliers) | Higher is better |
| Wasserstein-1 | Earth Mover's Distance (L1) | Lower is better |
| Wasserstein-2 | Quadratic optimal transport | Lower is better |
| MMD | Maximum Mean Discrepancy (kernel-based) | Lower is better |
| Energy Distance | Statistical potential energy | Lower is better |
Visualizations
- Boxplots & Violin plots: Metric distributions across conditions
- Radar plots: Multi-metric comparison
- Scatter plots: Real vs generated expression
- Embedding plots: PCA/UMAP of real vs generated data
- Heatmaps: Per-gene metric values
Key Features
- ✅ Condition-based matching (perturbation, cell type, etc.)
- ✅ Train/test split support
- ✅ Per-gene and aggregate metrics
- ✅ Modular, extensible architecture
- ✅ Command-line interface
- ✅ Publication-quality visualizations
Installation
pip install gge-eval
The package includes GPU-accelerated metrics via geomloss, which automatically falls back to CPU if no GPU is available.
Quick Start
Python API
from gge import evaluate
# From file paths
results = evaluate(
real_data="real_data.h5ad",
generated_data="generated_data.h5ad",
condition_columns=["perturbation", "cell_type"],
split_column="split", # Optional: for train/test
output_dir="evaluation_output/"
)
# From AnnData objects
import scanpy as sc
real_adata = sc.read_h5ad("real_data.h5ad")
generated_adata = sc.read_h5ad("generated_data.h5ad")
results = evaluate(
real_data=real_adata,
generated_data=generated_adata,
condition_columns=["perturbation"],
)
# Mixed (path + AnnData)
results = evaluate(
real_data="real_data.h5ad",
generated_data=generated_adata,
condition_columns=["perturbation"],
)
# Access results
print(results.summary())
# Get metric for specific split
test_results = results.get_split("test")
for condition, cond_result in test_results.conditions.items():
print(f"{condition}: Pearson={cond_result.get_metric_value('pearson'):.3f}")
Command Line
# Basic usage
gge --real real.h5ad --generated generated.h5ad \
--conditions perturbation cell_type \
--output results/
# With split column
gge --real real.h5ad --generated generated.h5ad \
--conditions perturbation \
--split-column split \
--splits test \
--output results/
# Specify metrics
gge --real real.h5ad --generated generated.h5ad \
--conditions perturbation \
--metrics pearson spearman wasserstein_1 mmd \
--output results/
Expected Data Format
GGE expects AnnData (h5ad) files with:
Required
adata.X: Gene expression matrix (samples × genes)adata.var_names: Gene identifiers (must overlap between datasets)adata.obs[condition_columns]: Columns for matching conditions
Optional
adata.obs[split_column]: Train/test split indicator
Output Structure
output/
├── summary.json # Aggregate metrics and metadata
├── results.csv # Per-condition metrics table
├── per_gene_*.csv # Per-gene metric values
└── plots/
├── boxplot_metrics.png
├── violin_metrics.png
├── radar_split.png
├── scatter_grid.png
└── embedding_pca.png
Contributing
Contributions are welcome! Please feel free to submit a pull request or open an issue.
License
This project is licensed under the MIT License. See the LICENSE file for details.
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 gge_eval-0.1.3.tar.gz.
File metadata
- Download URL: gge_eval-0.1.3.tar.gz
- Upload date:
- Size: 44.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.3.1 CPython/3.12.10 Darwin/25.3.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d30ffb1f721e6fb89ae8dbcdff285df8f32b9521a6118134a691f6c15e10c0e
|
|
| MD5 |
89e8a6092bb52e707770f4b1e836f303
|
|
| BLAKE2b-256 |
7a97aacc2f416f966f75f82cbbad88783b66cc7fd3f7929c672c03e70478edfb
|
File details
Details for the file gge_eval-0.1.3-py3-none-any.whl.
File metadata
- Download URL: gge_eval-0.1.3-py3-none-any.whl
- Upload date:
- Size: 54.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.3.1 CPython/3.12.10 Darwin/25.3.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
444491b2c1f3dbf18233975d6ab1fed624150ef801a0e68716b148f40186d3ae
|
|
| MD5 |
f1084ecfefb2384f383763366e2f39c3
|
|
| BLAKE2b-256 |
5993ae74515ce094bb47f987d525f7dfe5b422e512c757cf6d83d842444bf0de
|