Download Table
| Data Category | Description | Download Link |
|---|---|---|
| Core Association Data | Gene perturbation (e.g., knockout, overexpression) and disease/trait association results. Includes gene, perturbation type, disease, association strength (p-value, effect size), evidence source, etc. | Download JSON | CSV |
| Multi-omics Integration & Gene-Disease Heatmap | Multi-omics summary (cross-omics statistics), gene-disease association heatmap, and DEGs (logFC, p-value, etc.) for each GSE. | DEGs JSON | Multi-omics CSV | Heatmap JSON |
| High-Resolution Figures | High-res versions of all charts in Data Overview (PNG/SVG, latest). | Download Latest ZIP |
| Disease-Gene Manhattan Plot (by Chromosome) | Manhattan plot data with x-axis as chromosome (1-22, X, Y), for advanced visualization and analysis. | Chromosome JSON |
| Batch Download & API | Full dataset (CSV/TSV) and API access for programmatic data retrieval. | Batch Download | API Docs |
API Access
RESTful API Example:
Usage: You can fetch data directly in your scripts or analysis pipeline.
Example (Python):
GET /assets/data/disease-data.jsonGET /assets/data/volcano-plot-data.jsonGET /assets/data/download-links.jsonUsage: You can fetch data directly in your scripts or analysis pipeline.
Example (Python):
import requests url = 'http://localhost:8000/assets/data/disease-data.json' data = requests.get(url).json()