Datasets:
File size: 5,034 Bytes
2927ee8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 | ---
license: other
language:
- en
tags:
- biology
- protein
- peptide
- molecular-dynamics
- conotoxin
- toxicity
- protein-peptide-interaction
- thermodynamics
pretty_name: Pretraining and Downstream Benchmark Dataset
---
# ProtMMLM - datasets
## Overview
This dataset contains peptide resources for pre-training and subsequent evaluation. It includes amino acid sequences and structures in FASTA format, structure files derived from molecular dynamics simulations, and downstream benchmark datasets for cone snail toxin classification, peptide function prediction, toxicity prediction, protein-peptide affinity prediction, and thermodynamic feature modeling.
The dataset is divided into two main parts:
- `pretrain/`: Sequence and structure resources for self-supervised or multimodal pre-training.
- `downstream/`: Task-specific datasets for supervised evaluation.
```
datasets/
├── pretrain/
│ ├── all_sequences.fasta
│ ├── md.tar.gz
│ └── nature.tar.gz
└── downstream/
├── Conotoxin/
│ ├── pos.fasta
│ └── neg.fasta
├── PPIKB/
│ └── Affinity Dataset(main).xlsx
├── PrMFTP/
│ ├── train.txt
│ └── test.txt
├── Thermodynamic/
│ └── thermodynamic.csv
└── Toxteller/
├── training_dataset.fasta
└── independent_dataset.fasta
```
## Data Instances
### Pretraining Sequences
`pretrain/all_sequences.fasta` contains protein or peptide sequences in FASTA format.
Example:
```text
>1A11
GSEKMSTAISVLLAQAVFLLLTSQR
```
### Conotoxin Classification
`downstream/Conotoxin/pos.fasta` and `downstream/Conotoxin/neg.fasta` contain positive and negative examples for conotoxin-related binary classification.
Example:
```text
>sp|A0A068B6Q6|CA18_CONBE Conotoxin Bt1.8 (Fragment) OS=Conus betulinus OX=89764 PE=1 SV=1
PDGRNAAAKAFDLITPTVRKGCCSNPACILNNPNQCG
```
### PrMFTP Multi-Label Peptide Function Prediction
`downstream/PrMFTP/train.txt` and `downstream/PrMFTP/test.txt` use a FASTA-like format. Each header is a 21-dimensional binary label vector, followed by the peptide sequence.
Example:
```text
>000000000000000010000
ARRRRCSDRFRNCPADEALCGRRRR
```
### Toxteller Toxicity Prediction
`downstream/Toxteller/training_dataset.fasta` and `downstream/Toxteller/independent_dataset.fasta` contain peptide sequences with labels encoded in the FASTA header prefix:
- `pos_*`: toxic peptide
- `neg_*`: non-toxic peptide
Example:
```text
>pos_0
DLWQWGQMILKETGKLPFSYYTAYGCYCGWGGRGGKPKADTDRCCFVHDC
```
### Protein-Peptide Affinity
`downstream/PPIKB/Affinity Dataset(main).xlsx` contains protein-peptide interaction affinity records.
Columns:
- `ID`
- `Protein_Sequence`
- `UniProt_ID`
- `Peptide_Sequence`
- `Affinity`
### Thermodynamic Features
`downstream/Thermodynamic/thermodynamic.csv` contains frame-level thermodynamic or interaction-score features.
Columns:
- `sample`
- `frame`
- `total_score`
- `vdw`
- `hbbb`
- `hbsb`
- `hbss`
- `hp`
- `pc`
- `ps`
- `ts`
- `sb`
Example:
```csv
sample,frame,total_score,vdw,hbbb,hbsb,hbss,hp,pc,ps,ts,sb
1A11,2,17.947,-97.111,-18.912,0.0,0.0,-15.586,1.338e-06,0.0,0.0,-0.06789
```
## Intended Uses
This dataset collection can be used for:
- protein and peptide sequence representation learning;
- multimodal pretraining using sequence and structure data;
- binary peptide classification, including conotoxin and toxicity prediction;
- multi-label peptide function prediction;
- protein-peptide binding affinity prediction;
- frame-level thermodynamic or interaction-score modeling.
## Data Fields
### Sequence Files
- `header`: original FASTA header or encoded label string.
- `sequence`: amino-acid sequence.
- `label`: task-dependent label inferred from file name, FASTA header, or binary label vector.
### PPIKB
- `ID`: record identifier.
- `Protein_Sequence`: protein sequence.
- `UniProt_ID`: UniProt accession or identifier.
- `Peptide_Sequence`: peptide sequence.
- `Affinity`: protein-peptide binding affinity value as provided in the source table.
### Thermodynamic
- `sample`: sample or protein/peptide identifier.
- `frame`: frame index.
- `total_score`: total score for the frame.
- `vdw`: van der Waals contribution.
- `hbbb`: backbone-backbone hydrogen bond contribution.
- `hbsb`: sidechain-backbone hydrogen bond contribution.
- `hbss`: sidechain-sidechain hydrogen bond contribution.
- `hp`: hydrophobic contribution.
- `pc`: pi-cation contribution.
- `ps`: pi-stacking contribution.
- `ts`: T-stacking contribution.
- `sb`: salt-bridge contribution.
## Data Splits
The collection includes explicit train/test or independent splits for some downstream tasks:
- `PrMFTP`: `train.txt`, `test.txt`
- `Toxteller`: `training_dataset.fasta`, `independent_dataset.fasta`
For other tasks, users should define splits appropriate to their experimental protocol, avoiding leakage by sequence identity, source protein, or homologous family where relevant. |