Datasets:

Modalities:
Tabular
Text
Languages:
English
ArXiv:
DOI:
License:
findshuo commited on
Commit
af2dd3c
·
verified ·
1 Parent(s): 5401f92

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -10
README.md CHANGED
@@ -78,10 +78,10 @@ cd protap
78
 
79
  | Config Name | Task Description | Modality | Split | File Types |
80
  |-------------|--------------------------------------------------------|----------------|--------------|-------------------------------|
81
- | `AFP` | Protein function annotation (GO term prediction) | Sequence-only | `test` | `.csv` |
82
  | `PCSP` | Cleavage site prediction (enzyme-substrate pairs) | Seq + Struct | `train/test` | `.pkl` |
83
- | `PLI_DAVIS` | Protein–ligand binding affinity regression | Seq + Struct | `test` | `.txt`, `.json`, folder |
84
- | `PROTACs` | Ternary complex prediction in targeted degradation | Seq + Struct | `test` | `.txt`, `.json`, folder |
85
 
86
 
87
  ---
@@ -205,17 +205,22 @@ cd protap
205
  ### 🔹 Protein Function Annotation Prediction (`AFP`)
206
 
207
  - **Description**: Predict GO (Gene Ontology) terms for proteins.
208
- - **Input**: Protein sequence
209
  - **Output**: Multi-label vector representing associated GO terms
210
  - **Files**:
 
 
 
211
  - `AFP/nrPDB-GO_test.csv`
212
  - **Format**:
213
  - **Input Format**:
214
- CSV file with columns:
215
- - `sequence_id`: unique ID
216
- - `sequence`: amino acid string
217
- - [
 
218
  ```json
 
219
  {
220
  "name": "2P1Z-A",
221
  "seq": "SKKAELAELVKELAVYVDLRRATLHARASRLIGELLRELTADWDYVA...",
@@ -227,8 +232,23 @@ cd protap
227
  ...
228
  ]
229
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
230
  - **Label Format**:
231
- One or more GO term IDs (e.g., `GO:0007165`) in a multi-hot encoded label vector
232
  - **Metric**: Fmax, AUPR
233
 
234
 
@@ -248,5 +268,6 @@ If you use this dataset, please cite:
248
  }
249
  ```
250
  ## Contact
251
- Please submit GitHub issues or contact Shuo Yan (shuoyan[at]hkust-gz[dot]edu[dot]cn) for any questions related to the source code.
 
252
 
 
78
 
79
  | Config Name | Task Description | Modality | Split | File Types |
80
  |-------------|--------------------------------------------------------|----------------|--------------|-------------------------------|
81
+ | `AFP` | Protein function annotation (GO term prediction) | Seq + Struct | `test` | `.csv`,`json` |
82
  | `PCSP` | Cleavage site prediction (enzyme-substrate pairs) | Seq + Struct | `train/test` | `.pkl` |
83
+ | `PLI_DAVIS` | Protein–ligand binding affinity regression | Seq + Struct | `test` | `.txt`, `.json`, `.sdf` |
84
+ | `PROTACs` | Ternary complex prediction in targeted degradation | Seq + Struct | `test` | `.txt`, `.json`, '.sdf' |
85
 
86
 
87
  ---
 
205
  ### 🔹 Protein Function Annotation Prediction (`AFP`)
206
 
207
  - **Description**: Predict GO (Gene Ontology) terms for proteins.
208
+ - **Input**: Protein sequence and structure
209
  - **Output**: Multi-label vector representing associated GO terms
210
  - **Files**:
211
+ - `AFP/processed_data.json`
212
+ - `AFP/data_splits.json`
213
+ - `AFP/nrPDB-GO_annot.tsv`
214
  - `AFP/nrPDB-GO_test.csv`
215
  - **Format**:
216
  - **Input Format**:
217
+ ```AFP/processed_data.json```: json file with key value pair:
218
+ - `name`: unique ID
219
+ - `seq`: amino acid sequence
220
+ - `coords`: protein structure information
221
+ - `molecular_function`,`biological_process`,`cellular_component`: GO term labels
222
  ```json
223
+ - [
224
  {
225
  "name": "2P1Z-A",
226
  "seq": "SKKAELAELVKELAVYVDLRRATLHARASRLIGELLRELTADWDYVA...",
 
232
  ...
233
  ]
234
  ```
235
+ ```AFP/data_splits.json```: The division of the train and test datasets
236
+ - **annotation file Format**:
237
+ ```AFP/nrPDB-GO_annot.tsv```:tsv file with multi-column contains the detailed GO term information for all proteins.
238
+ ```
239
+ ### PDB-chain GO-terms (molecular_function) GO-terms (biological_process) GO-terms (cellular_component)
240
+ 1A6X-A GO:0016874 GO:0016053, ... , GO:0032787 GO:1902494
241
+ ```
242
+ ```AFP/nrPDB-GO_test.csv```: csv file with multi-column contains the sequence similarity between the test proteins and the training set.
243
+ ```
244
+ PDB-chain,<30%,<40%,<50%,<70%,<95%
245
+ 3ONG-B , 0 , 1 , 1 , 1 , 1
246
+ 1AD3-A , 0 , 0 , 1 , 1 , 1
247
+ 1FI8-A , 0 , 0 , 0 , 1 , 1
248
+ 2FWM-X , 0 , 1 , 1 , 1 , 1
249
+ ```
250
  - **Label Format**:
251
+ One or more GO term IDs (e.g., `GO:0007165`) in a multi-hot encoded label vector, The detailed GO term label information for each protein can be found in the **AFP/nrPDB-GO\_annot.tsv** file.
252
  - **Metric**: Fmax, AUPR
253
 
254
 
 
268
  }
269
  ```
270
  ## Contact
271
+ Please submit GitHub issues or contact Shuo Yan ([syan225@connect.hkust-gz.edu.cn](mailto:syan225@connect.hkust-gz.edu.cn)
272
+ ) for any questions related to the source code.
273