Update README.md
Browse files
README.md
CHANGED
@@ -32,3 +32,75 @@ configs:
|
|
32 |
- split: test
|
33 |
path: data/test-*
|
34 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
- split: test
|
33 |
path: data/test-*
|
34 |
---
|
35 |
+
|
36 |
+
# LBA: Ligand Binding Affinity
|
37 |
+
|
38 |
+
|
39 |
+
## Overview
|
40 |
+
|
41 |
+
In this task, we predict the binding affinity of ligands to their corresponding
|
42 |
+
proteins based on the co-crystallized structure of the protein-ligand complex.
|
43 |
+
We predict experimentally measured binding affinity as pK, defined as -log(Ki)
|
44 |
+
or -log(Kd), depending on which measurement is available.
|
45 |
+
|
46 |
+
We derive crystal structures and ligand binding data from PDBBind (Wang et al., 2004),
|
47 |
+
a widely-used curated database of protein-ligand complexes with experimental affinities
|
48 |
+
derived from literature. We use the 2019 update of the so-called "refined set", a subset
|
49 |
+
of complexes selected based on the quality of the structures and the affinity data.
|
50 |
+
After filtering ligands which could not be read by RDKit due to invalid bonding data,
|
51 |
+
our final dataset consists of 4,463 complexes.
|
52 |
+
|
53 |
+
|
54 |
+
## Datasets
|
55 |
+
- splits:
|
56 |
+
- split-by-sequence-identity-30: No proteins with seq. id. of more than 30% are in the same set.
|
57 |
+
|
58 |
+
|
59 |
+
## Format
|
60 |
+
|
61 |
+
Each entry in the dataset contains the following keys:
|
62 |
+
|
63 |
+
['input_ids'] The set of atomic numbers for the protein, pocket and ligand atoms concatenated together.
|
64 |
+
['coords'] The 3D coordinates for the protein, pocket and ligand atoms concatenated together.
|
65 |
+
['label'] experimentally measured binding affinity as pK.
|
66 |
+
['token_type_ids'] A mask that corresponds to which inputs_ids/coords belong to the protein, pocket or ligand atoms (0 for protein , 1 for pocket, 2 for ligand)
|
67 |
+
|
68 |
+
|
69 |
+
## Citation Information
|
70 |
+
|
71 |
+
```
|
72 |
+
@article{townshend2020atom3d,
|
73 |
+
title={Atom3d: Tasks on molecules in three dimensions},
|
74 |
+
author={Townshend, Raphael JL and V{\"o}gele, Martin and Suriana, Patricia and Derry, Alexander and Powers, Alexander and Laloudakis, Yianni and Balachandar, Sidhika and Jing, Bowen and Anderson, Brandon and Eismann, Stephan and others},
|
75 |
+
journal={arXiv preprint arXiv:2012.04035},
|
76 |
+
year={2020}
|
77 |
+
}
|
78 |
+
```
|
79 |
+
|
80 |
+
```
|
81 |
+
@article{wang2004pdbbind,
|
82 |
+
title={The PDBbind database: Collection of binding affinities for protein- ligand complexes with known three-dimensional structures},
|
83 |
+
author={Wang, Renxiao and Fang, Xueliang and Lu, Yipin and Wang, Shaomeng},
|
84 |
+
journal={Journal of medicinal chemistry},
|
85 |
+
volume={47},
|
86 |
+
number={12},
|
87 |
+
pages={2977--2980},
|
88 |
+
year={2004},
|
89 |
+
publisher={ACS Publications}
|
90 |
+
}
|
91 |
+
```
|
92 |
+
|
93 |
+
```
|
94 |
+
@article{liu2015pdb,
|
95 |
+
title={PDB-wide collection of binding data: current status of the PDBbind database},
|
96 |
+
author={Liu, Zhihai and Li, Yan and Han, Li and Li, Jie and Liu, Jie and Zhao, Zhixiong and Nie, Wei and Liu, Yuchen and Wang, Renxiao},
|
97 |
+
journal={Bioinformatics},
|
98 |
+
volume={31},
|
99 |
+
number={3},
|
100 |
+
pages={405--412},
|
101 |
+
year={2015},
|
102 |
+
publisher={Oxford University Press}
|
103 |
+
}
|
104 |
+
```
|
105 |
+
|
106 |
+
|