yk0 commited on
Commit
e6049d1
·
verified ·
1 Parent(s): 1a2185c

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +93 -0
README.md ADDED
@@ -0,0 +1,93 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # ProteinBase Interactions
2
+
3
+ ## Overview
4
+
5
+ Each row represents a single binder-target pair with:
6
+
7
+ - the ProteinBase binder identifier
8
+ - the binder sequence
9
+ - the target name
10
+ - the target sequence
11
+ - an experimental binding-strength label
12
+ - a binary classification label
13
+ - design-class metadata
14
+ - an `antibody` flag indicating whether the binder is an antibody-derived design (`Nanobody` or `scFv`)
15
+
16
+ ## Schema
17
+
18
+ The dataset contains the following columns:
19
+
20
+ - `proteinbase_id`: Original ProteinBase binder ID.
21
+ - `binder_name`: Binder name uploaded by the original protein designers.
22
+ - `target`: Common name of the target protein.
23
+ - `target_sequence`: Amino acid sequence of the target protein.
24
+ - `binder_sequence`: Amino acid sequence of the binder protein.
25
+ - `binding_strength`: Labels designated by Proteinbase. The possible values are `None`, `Weak`, `Medium`, and `Strong`.
26
+ - `label`: Binary benchmark label derived from `binding_strength`. `0` corresponds to `None`; `1` corresponds to `Weak`, `Medium`, or `Strong`.
27
+ - `value`: KD value for the binder-target pair, when KD measurements exist.
28
+ - `max_similarity_to_any_database`: Maximum sequence similarity to any reference database as extracted from the raw ProteinBase evaluations.
29
+ - `design_class`: Binder design class (e.g. scFv, miniprotein, peptide)
30
+ - `antibody`: `True` for `Nanobody` and `scFv` binders, `False` otherwise.
31
+
32
+ ## Filtering
33
+
34
+ Rows are retained only if all of the following are true:
35
+
36
+ - the raw entry contains at least one target
37
+ - the binder is marked as expressed (poor expression yield does not indicate non-binding)
38
+
39
+ Recognized design classes are split into two groups:
40
+
41
+ - non-antibody binders:
42
+ - `Miniprotein`
43
+ - `Other`
44
+ - `Peptide`
45
+ - antibody binders:
46
+ - `Nanobody`
47
+ - `scFv`
48
+
49
+ Additional similarity filtering is applied only to non-antibody binders:
50
+
51
+ - non-antibody rows are kept only if `max_similarity_to_any_database <= 50`
52
+ - antibody rows are retained regardless of this non-antibody threshold, and are marked by `antibody=True`
53
+
54
+ ## Label Definition
55
+
56
+ The binary classification label is defined as:
57
+
58
+ - `label = 0` if `binding_strength == "None"`
59
+ - `label = 1` if `binding_strength` is `Weak`, `Medium`, or `Strong`
60
+
61
+ ## Binding Affinity Value
62
+
63
+ The `value` column stores:
64
+
65
+ - the minimum KD value across available KD measurements for the corresponding binder-target pair
66
+
67
+ If no numeric KD is available, `value` is left blank.
68
+
69
+ ## Raw Source Collections
70
+
71
+ This dataset is currently constructed from the following ProteinBase collections:
72
+
73
+ - `proteinbase_collection_adaptyv-egfr-competition-round-1.csv`
74
+ - `proteinbase_collection_adaptyv-egfr-competition-round-2.csv`
75
+ - `proteinbase_collection_adaptyv-x-muni-hackathon-ai-agents-vs-humans.csv`
76
+ - `proteinbase_collection_bindcraft1-revalidation.csv`
77
+ - `proteinbase_collection_boltzgen-release.csv`
78
+ - `proteinbase_collection_boolean-biotech-vhh-competition-2025.csv`
79
+ - `proteinbase_collection_cradle-egfr-competition.csv`
80
+ - `proteinbase_collection_dsm-round-1.csv`
81
+ - `proteinbase_collection_egfr-round1-second-submission.csv`
82
+ - `proteinbase_collection_evodiff-validation.csv`
83
+ - `proteinbase_collection_evolved-2024-bio-x-ml-team-silica-egfr-nanobodies.csv`
84
+ - `proteinbase_collection_evolved-hackathon.csv`
85
+ - `proteinbase_collection_gem-x-adaptyv-rbx1-binder-design-competition-results.csv`
86
+ - `proteinbase_collection_mog-dfm-spotlight.csv`
87
+ - `proteinbase_collection_mosaic-development.csv`
88
+ - `proteinbase_collection_mosaic-multispecifics.csv`
89
+ - `proteinbase_collection_nipah-binder-competition-results.csv`
90
+ - `proteinbase_collection_pd-l1-foldcraft.csv`
91
+ - `proteinbase_collection_pro-1-validation.csv`
92
+ - `proteinbase_collection_protrl-validation.csv`
93
+ - `proteinbase_collection_rfdiffusion-re-validation.csv`