Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,34 @@
|
|
| 1 |
---
|
| 2 |
-
license:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- graph-ml
|
| 5 |
+
tags:
|
| 6 |
+
- biology
|
| 7 |
+
- genomics
|
| 8 |
+
- lung-squamous-cancer
|
| 9 |
+
- graph-neural-networks
|
| 10 |
+
- pytorch-geometric
|
| 11 |
+
language:
|
| 12 |
+
- en
|
| 13 |
+
size_categories:
|
| 14 |
+
- n<1K
|
| 15 |
---
|
| 16 |
+
|
| 17 |
+
This dataset combines expression data from TCGA with protein interaction network from STRING. An example implementation of a GCN trained on this dataset is available [here](https://github.com/rizanb/lusc_gnn).
|
| 18 |
+
|
| 19 |
+
## How
|
| 20 |
+
I built node indices from filtered human ppi in `notebooks/process_human_ppi.ipynb` to make a custom `PyG Dataset`.
|
| 21 |
+
`human ppi -> filter for high confidence (score > 0.7) -> filter to keep only genes in expression dataset -> gene ids -> integer ids -> edge indices`
|
| 22 |
+
GCN expects a graph dataset; each graph represents a patient sample. Nodes represent genes, and edges represent protein-protein interactions between genes. The structure of the graph is the same for all samples (given by edge indices), only the node features (expression levels for each gene) vary.
|
| 23 |
+
|
| 24 |
+
## Data
|
| 25 |
+
- expression: TCGA LUSC HiSeqV2 gene expression data (178 samples, 20530 genes), UCSC Xena
|
| 26 |
+
- subtype labels: TCGA Nature 2012 paper supplementary data
|
| 27 |
+
- STRING PPI network: *Homo sapiens* interaction data; high-confidence interactions (score > 0.7)
|
| 28 |
+
- class distribution:
|
| 29 |
+
```
|
| 30 |
+
classical: 65 (36.5%)
|
| 31 |
+
basal: 43 (24.2%)
|
| 32 |
+
secretory: 43 (24.2%)
|
| 33 |
+
primitive: 27 (15.2%)
|
| 34 |
+
```
|