Skip to main content

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

PyPI version Python 3.8+ License: MIT Tests Documentation

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
  • Interactive Plotly plots: Density overlays, embeddings with metadata coloring

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

gge_eval-0.1.4.tar.gz (49.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gge_eval-0.1.4-py3-none-any.whl (60.8 kB view details)

Uploaded Python 3

File details

Details for the file gge_eval-0.1.4.tar.gz.

File metadata

  • Download URL: gge_eval-0.1.4.tar.gz
  • Upload date:
  • Size: 49.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/2.3.1 CPython/3.12.10 Darwin/25.3.0

File hashes

Hashes for gge_eval-0.1.4.tar.gz
Algorithm Hash digest
SHA256 51b83d9fa790c2a624f381274124ffe87ed306bebf9b78edee74d42ba2cd8c01
MD5 e57947da066652b159af1ef39f83af85
BLAKE2b-256 7d7adc7e05e17f7e7c749887d2aa43f748afec887def7d7b2494217926bb52d2

See more details on using hashes here.

File details

Details for the file gge_eval-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: gge_eval-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 60.8 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

Hashes for gge_eval-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 4cad2a489379979996788615a65e32e54a78c98fefdbb878f18d5e3e4f0444d6
MD5 2c9c2401c0d890cbf7a302a77e0b89b5
BLAKE2b-256 0b6900b26c3c6e72480c5d373f8388ec1b7a656afce4da4ad0c63403f5fcc3bc

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page