added epitopes to antibody synomym table and updated configuration
Browse files- antibody_info/antibody_synonyms.parquet +2 -2
- cov-unibind.py +18 -0
antibody_info/antibody_synonyms.parquet
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d1c440450dfd58a34adcafb08d43fa80d9a5c72550ce46dec8d41998673f571a
|
| 3 |
+
size 23437
|
cov-unibind.py
CHANGED
|
@@ -3,6 +3,7 @@ import datasets
|
|
| 3 |
|
| 4 |
_DESCRIPTION = """\
|
| 5 |
Multi-source dataset of antibody-mutation interactions including IC50, binding, escape, and affinity measurements.
|
|
|
|
| 6 |
"""
|
| 7 |
|
| 8 |
_FEATURES = {
|
|
@@ -41,7 +42,24 @@ _FEATURES = {
|
|
| 41 |
'antigen_pdb_sequence_trimmed': datasets.Value("string"),
|
| 42 |
}
|
| 43 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 44 |
_TABLES = {
|
|
|
|
|
|
|
|
|
|
|
|
|
| 45 |
"drdb": {
|
| 46 |
"file": "data/drdb_binding_potency.parquet",
|
| 47 |
"features": {
|
|
|
|
| 3 |
|
| 4 |
_DESCRIPTION = """\
|
| 5 |
Multi-source dataset of antibody-mutation interactions including IC50, binding, escape, and affinity measurements.
|
| 6 |
+
Also includes antibody synonyms with CDR sequences and epitope information.
|
| 7 |
"""
|
| 8 |
|
| 9 |
_FEATURES = {
|
|
|
|
| 42 |
'antigen_pdb_sequence_trimmed': datasets.Value("string"),
|
| 43 |
}
|
| 44 |
|
| 45 |
+
_ANTIBODY_SYNONYMS_FEATURES = {
|
| 46 |
+
'antibody_name': datasets.Value("string"),
|
| 47 |
+
'pdb_id': datasets.Value("string"),
|
| 48 |
+
'antibody_heavy_chain_cdr1': datasets.Value("string"),
|
| 49 |
+
'antibody_heavy_chain_cdr2': datasets.Value("string"),
|
| 50 |
+
'antibody_heavy_chain_cdr3': datasets.Value("string"),
|
| 51 |
+
'antibody_light_chain_cdr1': datasets.Value("string"),
|
| 52 |
+
'antibody_light_chain_cdr2': datasets.Value("string"),
|
| 53 |
+
'antibody_light_chain_cdr3': datasets.Value("string"),
|
| 54 |
+
'epitope_residues': datasets.Value("string"),
|
| 55 |
+
'epitope_domain': datasets.Value("string"),
|
| 56 |
+
}
|
| 57 |
+
|
| 58 |
_TABLES = {
|
| 59 |
+
"antibody_synonyms": {
|
| 60 |
+
"file": "antibody_info/antibody_synonyms_with_epitopes.parquet",
|
| 61 |
+
"features": _ANTIBODY_SYNONYMS_FEATURES,
|
| 62 |
+
},
|
| 63 |
"drdb": {
|
| 64 |
"file": "data/drdb_binding_potency.parquet",
|
| 65 |
"features": {
|