proteinglm commited on
Commit
4153bdf
·
verified ·
1 Parent(s): 47a8d84

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +73 -0
README.md CHANGED
@@ -27,4 +27,77 @@ configs:
27
  path: data/valid-*
28
  - split: test
29
  path: data/test-*
 
 
 
 
 
 
 
 
30
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
27
  path: data/valid-*
28
  - split: test
29
  path: data/test-*
30
+ license: apache-2.0
31
+ task_categories:
32
+ - token-classification
33
+ tags:
34
+ - biology
35
+ - chemistry
36
+ size_categories:
37
+ - 1K<n<10K
38
  ---
39
+ # Dataset Card for Contact Prediction Dataset
40
+
41
+ ### Dataset Summary
42
+
43
+ Contact map prediction aims to determine whether two residues, $i$ and $j$, are in contact or not, based on their distance with a certain threshold ($<$8 Angstrom). This task is an important part of the early Alphafold version for structural prediction.
44
+
45
+ ## Dataset Structure
46
+
47
+ ### Data Instances
48
+
49
+ For each instance, there is a string of the protein sequences, a sequence for the contact labels. Each of the sub-labels "[2, 3]" indicates the 3rd residue are in contact with the 4th residue (start from index 0). See the [Contact map prediction dataset viewer](https://huggingface.co/datasets/Bo1015/contact_prediction_binary/viewer/default/test) to explore more examples.
50
+
51
+ ```
52
+ {'seq':'QNLLKNLAASLGRKPFVADKQGVYRLTIDKHLVMLAPHGSELVLRTPIDAPMLREGNNVNVTLLRSLMQQALAWAKRYPQTLVLDDCGQLVLEARLRLQELDTHGLQEVINKQLALLEHLIPQLTP'
53
+ 'label': [ [ 0, 0 ], [ 0, 1 ], [ 1, 1 ], [ 1, 2 ], [ 1, 3 ], [ 1, 101 ], [ 2, 2 ], [ 2, 3 ], [ 2, 4 ], [ 3, 3 ], [ 3, 4 ], [ 3, 5 ], [ 3, 99 ], [ 3, 100 ], [ 3, 101 ], [ 4, 4 ], [ 4, 5 ], [ 4, 53 ], ...]}
54
+ ```
55
+
56
+ The average for the `seq` and the `label` are provided below:
57
+
58
+ | Feature | Mean Count |
59
+ | ---------- | ---------------- |
60
+ | seq | 249 |
61
+ | label | 1,500 |
62
+
63
+ ### Data Fields
64
+
65
+ - `seq`: a string containing the protein sequence
66
+ - `label`: a string containing the contact label of each residue pair.
67
+
68
+ ### Data Splits
69
+
70
+ The contact map prediction dataset has 3 splits: _train_, _validation_, and _test_. Below are the statistics of the dataset.
71
+
72
+ | Dataset Split | Number of Instances in Split |
73
+ | ------------- | ------------------------------------------- |
74
+ | Train | 12,041 |
75
+ | Validation | 1,505 |
76
+ | Test | 1,505 |
77
+
78
+ ### Source Data
79
+
80
+ #### Initial Data Collection and Normalization
81
+
82
+ The [trRosetta dataset](https://www.pnas.org/doi/10.1073/pnas.1914677117) is employed as the initilized dataset.
83
+
84
+
85
+ ### Licensing Information
86
+
87
+ The dataset is released under the [Apache-2.0 License](http://www.apache.org/licenses/LICENSE-2.0).
88
+
89
+ ### Citation
90
+ If you find our work useful, please consider citing the following paper:
91
+
92
+ ```
93
+ @misc{chen2024xtrimopglm,
94
+ title={xTrimoPGLM: unified 100B-scale pre-trained transformer for deciphering the language of protein},
95
+ 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},
96
+ year={2024},
97
+ eprint={2401.06199},
98
+ archivePrefix={arXiv},
99
+ primaryClass={cs.CL},
100
+ note={arXiv preprint arXiv:2401.06199}
101
+ }
102
+ ```
103
+