proteinglm commited on
Commit
48a107d
1 Parent(s): 3458137

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +73 -0
README.md CHANGED
@@ -21,4 +21,77 @@ configs:
21
  path: data/train-*
22
  - split: test
23
  path: data/test-*
 
 
 
 
 
 
 
24
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  path: data/train-*
22
  - split: test
23
  path: data/test-*
24
+ license: apache-2.0
25
+ task_categories:
26
+ - text-classification
27
+ tags:
28
+ - chemistry
29
+ - biology
30
+ - medical
31
  ---
32
+
33
+
34
+ # Dataset Card for Metal Ion Binding Dataset
35
+
36
+ ### Dataset Summary
37
+
38
+ Metal ion binding sites within proteins play a crucial role across a spectrum of processes, spanning from physiological to pathological, toxicological, pharmaceutical, and diagnostic. Consequently, the development of precise and efficient methods to identify and characterize these metal ion binding sites in proteins has become an imperative and intricate task for bioinformatics and structural biology.
39
+
40
+ ## Dataset Structure
41
+
42
+ ### Data Instances
43
+ For each instance, there is a string representing the protein sequence and an integer label indicating the existence of metal-ion binding site(s) on a given protein sequence. See the [metal ion binding dataset viewer](https://huggingface.co/datasets/Bo1015/metal_ion_binding/viewer) to explore more examples.
44
+
45
+ ```
46
+ {'seq':'MEHVIDNFDNIDKCLKCGKPIKVVKLKYIKKKIENIPNSHLINFKYCSKCKRENVIENL'
47
+ 'label':1}
48
+ ```
49
+
50
+ The average for the `seq` and the `label` are provided below:
51
+
52
+ | Feature | Mean Count |
53
+ | ---------- | ---------------- |
54
+ | seq | 309 |
55
+ | label (0) | 0.5 |
56
+ | label (1) | 0.5 |
57
+
58
+
59
+
60
+
61
+ ### Data Fields
62
+
63
+ - `seq`: a string containing the protein sequence
64
+ - `label`: an integer label indicating the existence of metal-ion binding site(s) on a given protein sequence
65
+
66
+ ### Data Splits
67
+
68
+ The metal ion binding dataset has 2 splits: _train_ and _test_. Below are the statistics of the dataset.
69
+
70
+ | Dataset Split | Number of Instances in Split |
71
+ | ------------- | ------------------------------------------- |
72
+ | Train | 6,000 |
73
+ | Test | 1,332 |
74
+
75
+ ### Source Data
76
+
77
+ #### Initial Data Collection and Normalization
78
+ We employ data collected from [Cheng et al](https://www.nature.com/articles/s41589-022-01223-z) curated from the Protein Data Bank (PDB).
79
+
80
+ ### Licensing Information
81
+
82
+ The dataset is released under the [Apache-2.0 License](http://www.apache.org/licenses/LICENSE-2.0).
83
+
84
+ ### Citation
85
+ If you find our work useful, please consider citing the following paper:
86
+
87
+ ```
88
+ @misc{chen2024xtrimopglm,
89
+ title={xTrimoPGLM: unified 100B-scale pre-trained transformer for deciphering the language of protein},
90
+ 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},
91
+ year={2024},
92
+ eprint={2401.06199},
93
+ archivePrefix={arXiv},
94
+ primaryClass={cs.CL},
95
+ note={arXiv preprint arXiv:2401.06199}
96
+ }
97
+ ```