Datasets:
proteinglm
commited on
Commit
•
f59deb8
1
Parent(s):
01428eb
Update README.md
Browse files
README.md
CHANGED
@@ -26,4 +26,79 @@ configs:
|
|
26 |
path: data/valid-*
|
27 |
- split: test
|
28 |
path: data/test-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
26 |
path: data/valid-*
|
27 |
- split: test
|
28 |
path: data/test-*
|
29 |
+
license: apache-2.0
|
30 |
+
task_categories:
|
31 |
+
- text-classification
|
32 |
+
tags:
|
33 |
+
- chemistry
|
34 |
+
- biology
|
35 |
+
size_categories:
|
36 |
+
- 1K<n<10K
|
37 |
---
|
38 |
+
|
39 |
+
|
40 |
+
# Dataset Card for Optimal PH Dataset
|
41 |
+
|
42 |
+
### Dataset Summary
|
43 |
+
|
44 |
+
Enzyme functions normally under a specific range of pH of the surrounding environment. However, an optimal pH for the reaction will largely boost the catalytic ability.
|
45 |
+
|
46 |
+
## Dataset Structure
|
47 |
+
|
48 |
+
### Data Instances
|
49 |
+
For each instance, there is a string representing the protein sequence and a float value indicating the optimal ph for a given enzyme’s catalytic effect. See the [optimal ph dataset viewer](https://huggingface.co/datasets/Bo1015/optimal_ph/viewer) to explore more examples.
|
50 |
+
|
51 |
+
```
|
52 |
+
{'seq':'MEHVIDNFDNIDKCLKCGKPIKVVKLKYIKKKIENIPNSHLINFKYCSKCKRENVIENL'
|
53 |
+
'label':6.5}
|
54 |
+
```
|
55 |
+
|
56 |
+
The average for the `seq` and the `label` are provided below:
|
57 |
+
|
58 |
+
| Feature | Mean Count |
|
59 |
+
| ---------- | ---------------- |
|
60 |
+
| seq | 427 |
|
61 |
+
| label | 7.2 |
|
62 |
+
|
63 |
+
|
64 |
+
|
65 |
+
|
66 |
+
### Data Fields
|
67 |
+
|
68 |
+
- `seq`: a string containing the protein sequence
|
69 |
+
- `label`: a float value indicating the optimal ph for a given enzyme’s catalytic effect.
|
70 |
+
|
71 |
+
### Data Splits
|
72 |
+
|
73 |
+
The Optimal PH dataset has 3 splits: _train_, _valid_, and _test_. Below are the statistics of the dataset.
|
74 |
+
|
75 |
+
| Dataset Split | Number of Instances in Split |
|
76 |
+
| ------------- | ------------------------------------------- |
|
77 |
+
| Train | 7,124 |
|
78 |
+
| Valid | 760 |
|
79 |
+
| Test | 1,971 |
|
80 |
+
|
81 |
+
### Source Data
|
82 |
+
|
83 |
+
#### Initial Data Collection and Normalization
|
84 |
+
|
85 |
+
The dataset is collected from [EpHod](https://github.com/jafetgado/EpHod), which established a deep learning method to predict the optimal enzyme catalytic pH based on protein sequence only.
|
86 |
+
|
87 |
+
### Licensing Information
|
88 |
+
|
89 |
+
The dataset is released under the [Apache-2.0 License](http://www.apache.org/licenses/LICENSE-2.0).
|
90 |
+
|
91 |
+
### Citation
|
92 |
+
If you find our work useful, please consider citing the following paper:
|
93 |
+
|
94 |
+
```
|
95 |
+
@misc{chen2024xtrimopglm,
|
96 |
+
title={xTrimoPGLM: unified 100B-scale pre-trained transformer for deciphering the language of protein},
|
97 |
+
author={Chen, Bo and Cheng, Xingyi and Li, Pan and Geng, Yangli-ao and Gong, Jing and Li, Shen and Bei, Zhilei and Tan, Xu and Wang, Boyan and Zeng, Xin and others},
|
98 |
+
year={2024},
|
99 |
+
eprint={2401.06199},
|
100 |
+
archivePrefix={arXiv},
|
101 |
+
primaryClass={cs.CL},
|
102 |
+
note={arXiv preprint arXiv:2401.06199}
|
103 |
+
}
|
104 |
+
```
|