Datasets:
proteinglm
commited on
Commit
•
cf78c69
1
Parent(s):
1acb992
Update README.md
Browse files
README.md
CHANGED
@@ -21,4 +21,73 @@ 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 |
+
task_categories:
|
25 |
+
- text-classification
|
26 |
+
tags:
|
27 |
+
- chemistry
|
28 |
+
- biology
|
29 |
+
size_categories:
|
30 |
+
- 10K<n<100K
|
31 |
---
|
32 |
+
|
33 |
+
|
34 |
+
# Dataset Card for TCR_pMHC_Affinity Dataset
|
35 |
+
|
36 |
+
### Dataset Summary
|
37 |
+
|
38 |
+
The interaction between T cell receptors (TCRs) and peptide-major histocompatibility complexes (pMHCs) plays a crucial role in the recognition and activation of T cells in the immune system. TCRs are cell surface receptors found on T cells, and pMHCs are complexes formed by peptides derived from antigens bound to major histocompatibility complexes (MHCs) on the surface of antigen-presenting cells. The classification task is to predict whether a given paired TCR sequence and peptide can bind or not.
|
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 whether a given paired TCR sequence and peptide can bind or not. See the [TCR_pMHC_Affinity dataset viewer](https://huggingface.co/datasets/Bo1015/tcr_pmhc_affinity/viewer) to explore more examples.
|
44 |
+
|
45 |
+
```
|
46 |
+
{'seq':'CAGADGGSQGNLIF|CASSTRSTDTQYF|GILGFVFTL'
|
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 | 39 |
|
55 |
+
| label (0) | 0.83 |
|
56 |
+
| label (1) | 0.17 |
|
57 |
+
|
58 |
+
|
59 |
+
### Data Fields
|
60 |
+
|
61 |
+
- `seq`: a string containing the protein sequence
|
62 |
+
- `label`: an integer label indicating whether a given paired TCR sequence and peptide can bind or not.
|
63 |
+
|
64 |
+
### Data Splits
|
65 |
+
|
66 |
+
The TCR_pMHC_Affinity dataset has 2 splits: _train_ and _test_. Below are the statistics of the dataset.
|
67 |
+
|
68 |
+
| Dataset Split | Number of Instances in Split |
|
69 |
+
| ------------- | ------------------------------------------- |
|
70 |
+
| Train | 19,526 |
|
71 |
+
| Test | 4,485 |
|
72 |
+
|
73 |
+
### Source Data
|
74 |
+
|
75 |
+
#### Initial Data Collection and Normalization
|
76 |
+
|
77 |
+
The dataset is major from [VDJdb](https://vdjdb.cdr3.net/), processed and curated from [epiTCR](https://academic.oup.com/bioinformatics/article/39/5/btad284/7140137).
|
78 |
+
|
79 |
+
|
80 |
+
### Citation
|
81 |
+
If you find our work useful, please consider citing the following paper:
|
82 |
+
|
83 |
+
```
|
84 |
+
@misc{chen2024xtrimopglm,
|
85 |
+
title={xTrimoPGLM: unified 100B-scale pre-trained transformer for deciphering the language of protein},
|
86 |
+
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},
|
87 |
+
year={2024},
|
88 |
+
eprint={2401.06199},
|
89 |
+
archivePrefix={arXiv},
|
90 |
+
primaryClass={cs.CL},
|
91 |
+
note={arXiv preprint arXiv:2401.06199}
|
92 |
+
}
|
93 |
+
```
|