Datasets:
Upload README.md with huggingface_hub
Browse files
README.md
ADDED
|
@@ -0,0 +1,76 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- other
|
| 5 |
+
tags:
|
| 6 |
+
- biology
|
| 7 |
+
- gene-regulatory-networks
|
| 8 |
+
- single-cell
|
| 9 |
+
- glioblastoma
|
| 10 |
+
- perturbation
|
| 11 |
+
- grn-inference
|
| 12 |
+
size_categories:
|
| 13 |
+
- 10K<n<100K
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# scRegNet Data & Results
|
| 17 |
+
|
| 18 |
+
Processed data and results for **scRegNet**: perturbation-calibrated gene representations
|
| 19 |
+
for context-specific gene regulatory network inference in glioblastoma.
|
| 20 |
+
|
| 21 |
+
**Code**: [github.com/mmTheBest/scRegNet](https://github.com/mmTheBest/scRegNet)
|
| 22 |
+
|
| 23 |
+
## Contents
|
| 24 |
+
|
| 25 |
+
### Processed Data (`data/processed/`)
|
| 26 |
+
|
| 27 |
+
| File | Description | Size |
|
| 28 |
+
|------|-------------|------|
|
| 29 |
+
| `gene_universe.json` | G\* gene universe (18,716 genes) | 252 KB |
|
| 30 |
+
| `hgfb_raw.npz` | H-GFB features (18,716 × 1,152) | 83 MB |
|
| 31 |
+
| `microglia_labels.npz` | Microglia perturbation labels (38 regulators) | 800 KB |
|
| 32 |
+
| `k562_labels.npz` | K562 perturbation labels (9,611 regulators) | 19 MB |
|
| 33 |
+
| `embeddings/*.npz` | 6 embedding sources (18,716 × 256 each) | 116 MB |
|
| 34 |
+
| `atlas/celltype_means.npz` | Cell-type mean expression (11 types) | 784 KB |
|
| 35 |
+
| `atlas/neftel_subtypes.npz` | Neftel subtype means (6 subtypes) | 3.2 MB |
|
| 36 |
+
| `validation/*.json` | ChIP-Atlas, DoRothEA, TRRUST, canonical TFs | 9 MB |
|
| 37 |
+
| `validation/depmap_ceres.npz` | DepMap CERES scores (50 GBM lines) | — |
|
| 38 |
+
| `validation/msigdb_genesets.json` | MSigDB gene sets (7,540 sets) | — |
|
| 39 |
+
|
| 40 |
+
### Results (`results/`)
|
| 41 |
+
|
| 42 |
+
| Directory | Description |
|
| 43 |
+
|-----------|-------------|
|
| 44 |
+
| `stage_b/` | Stage B model outputs (6 embeddings + 3 controls) |
|
| 45 |
+
| `stage_c/` | Stage C GRN predictions (6 sources × 17 contexts, parquet) |
|
| 46 |
+
| `competing/` | 8 competing method outputs |
|
| 47 |
+
| `experiments/exp_1-9/` | All 9 experiment results (JSON) |
|
| 48 |
+
| `figures/` | 7 main + 6 extended figures (PDF + PNG) |
|
| 49 |
+
|
| 50 |
+
### Not Included (Regeneratable)
|
| 51 |
+
|
| 52 |
+
- Raw count matrices (`data/processed/stage_c/`, 4.3 GB) — regenerate from GEO GSE274546
|
| 53 |
+
- Per-cell expression matrices (`data/processed/atlas/celltype_expr/`, 1.8 GB) — regenerate via `05a_prepare_atlas.py`
|
| 54 |
+
|
| 55 |
+
## Usage
|
| 56 |
+
|
| 57 |
+
```python
|
| 58 |
+
from huggingface_hub import snapshot_download
|
| 59 |
+
|
| 60 |
+
# Download everything
|
| 61 |
+
snapshot_download("mm1109/scRegNet", repo_type="dataset", local_dir="./scRegNet-data")
|
| 62 |
+
|
| 63 |
+
# Load embeddings
|
| 64 |
+
import numpy as np
|
| 65 |
+
data = np.load("scRegNet-data/data/processed/embeddings/geneformer.npz")
|
| 66 |
+
embeddings = data["embeddings"] # (18716, 256)
|
| 67 |
+
genes = data["genes"] # (18716,)
|
| 68 |
+
|
| 69 |
+
# Load GRN predictions
|
| 70 |
+
import pandas as pd
|
| 71 |
+
grn = pd.read_parquet("scRegNet-data/results/stage_c/geneformer.parquet")
|
| 72 |
+
```
|
| 73 |
+
|
| 74 |
+
## License
|
| 75 |
+
|
| 76 |
+
MIT
|