lhallee commited on
Commit
7dd4083
·
verified ·
1 Parent(s): 2624954

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +52 -5
README.md CHANGED
@@ -39,16 +39,11 @@ dataset_info:
39
  dtype: int32
40
  splits:
41
  - name: train
42
- num_bytes: 75872160
43
  num_examples: 418381
44
  - name: valid
45
- num_bytes: 196539
46
  num_examples: 1157
47
  - name: test
48
- num_bytes: 233913
49
  num_examples: 1436
50
- download_size: 10189662
51
- dataset_size: 76302612
52
  configs:
53
  - config_name: default
54
  data_files:
@@ -59,3 +54,55 @@ configs:
59
  - split: test
60
  path: data/test-*
61
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  dtype: int32
40
  splits:
41
  - name: train
 
42
  num_examples: 418381
43
  - name: valid
 
44
  num_examples: 1157
45
  - name: test
 
46
  num_examples: 1436
 
 
47
  configs:
48
  - config_name: default
49
  data_files:
 
54
  - split: test
55
  path: data/test-*
56
  ---
57
+
58
+ # PLINDER Protein-Ligand Interactions
59
+
60
+ This dataset contains per-ligand, per-interacting-protein-chain pairs from the PLINDER dataset.
61
+ Splits follow the official stringent train/val/test split provided by PLINDER (val is renamed to valid on the Hub).
62
+
63
+ ## Row Schema
64
+
65
+ | Column | Type | Description |
66
+ |--------|------|-------------|
67
+ | `system_id` | string | PLINDER system ID |
68
+ | `split` | string | Dataset split (train/valid/test) |
69
+ | `entry_pdb_id` | string | PDB entry ID |
70
+ | `entry_determination_method` | string | Experimental method (X-RAY DIFFRACTION, CRYO-EM, NMR, etc.) |
71
+ | `entry_resolution` | float | Structure resolution in Angstroms |
72
+ | `is_experimental` | bool | Whether the structure is experimentally determined (always True for PLINDER) |
73
+ | `protein_sequence` | string | Amino acid sequence of the interacting protein chain |
74
+ | `protein_chain_id` | string | Protein chain identifier |
75
+ | `protein_instance_chain` | string | Full instance.chain identifier |
76
+ | `ligand_smiles` | string | Canonical SMILES of the ligand |
77
+ | `ligand_ccd_code` | string | PDB Chemical Component Dictionary code |
78
+ | `ligand_instance_chain` | string | Ligand instance.chain identifier |
79
+ | `ligand_is_proper` | bool | True if ligand is not an ion or artifact |
80
+ | `ligand_is_covalent` | bool | True if ligand is covalently bound |
81
+ | `ligand_molecular_weight` | float | Molecular weight of the ligand |
82
+ | `system_pass_validation_criteria` | bool | True if system passes PLINDER quality criteria |
83
+ | `system_num_protein_chains` | int | Number of protein chains in the system |
84
+ | `system_num_ligand_chains` | int | Number of ligand chains in the system |
85
+
86
+ ## Data Source
87
+
88
+ All data is derived from the Protein Data Bank (PDB) via the PLINDER dataset.
89
+ The `entry_determination_method` column indicates the experimental technique used:
90
+ - **X-RAY DIFFRACTION**: Crystal structures
91
+ - **CRYO-EM**: Cryo-electron microscopy structures
92
+ - **NMR**: Nuclear magnetic resonance structures
93
+ - **ELECTRON MICROSCOPY**: Other EM methods
94
+
95
+ ## Citation
96
+
97
+ If you use this dataset, please cite the PLINDER paper:
98
+
99
+ ```bibtex
100
+ @article{Durairaj2024,
101
+ title = {PLINDER: The Protein-Ligand Interactions Dataset and Evaluation Resource},
102
+ year = {2024},
103
+ journal = {bioRxiv},
104
+ doi = {10.1101/2024.07.17.603955}
105
+ }
106
+ ```
107
+
108
+ Generated by `Synthyra/PLINDER`.