vladak commited on
Commit
fa1cfa3
·
verified ·
1 Parent(s): fa592f5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +24 -0
README.md CHANGED
@@ -35,3 +35,27 @@ configs:
35
  - split: test
36
  path: data/test-*
37
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
35
  - split: test
36
  path: data/test-*
37
  ---
38
+
39
+ # STRING PPI Human 1M
40
+
41
+ This dataset contains 1 million human protein–protein interactions (PPIs) derived from STRING v11.5.
42
+
43
+ **Columns**:
44
+ - `seq_a`, `seq_b`: Amino acid sequences of the interacting proteins (≤2048 AA).
45
+ - `seq_name_a`, `seq_name_b`: Protein names from STRING.
46
+ - `score`: Combined score from STRING (0–1000, normalized to 0–1). This score integrates various evidence channels (experimental data, text mining, co-expression, etc.) into a single confidence metric.
47
+ - `label`: Binary interaction label.
48
+ - `1`: High-confidence positive interaction (STRING experimental score > 0.7).
49
+ - `0`: Low-confidence negative interaction (STRING experimental score < 0.2).
50
+
51
+ **Processing Steps**:
52
+ - Downloaded human interactions from STRING (`9606.protein.links.detailed.v11.5.txt.gz`).
53
+ - Filtered by experimental score thresholds for positives/negatives.
54
+ - Retrieved protein sequences from UniProt by matching STRING protein names.
55
+ - Excluded sequences longer than 2048 amino acids.
56
+ - Balanced top and bottom 500k interactions by combined score.
57
+
58
+ Useful for training models for binary PPI prediction or embedding-based methods.
59
+
60
+ Source: [STRING Database v11.5](https://string-db.org).
61
+