File size: 3,946 Bytes
52e6181
 
 
 
 
 
 
 
 
 
6cf452f
 
 
 
 
52e6181
 
 
 
7500939
 
 
 
 
 
 
 
84c3905
 
7500939
 
 
 
52e6181
6cf452f
 
 
 
 
 
 
 
 
 
 
 
 
fad28ad
 
6cf452f
66ec16e
6cf452f
 
d24faf0
 
 
 
 
 
66ec16e
6cf452f
 
 
 
 
 
52e6181
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
license: other
tags:
  - chemistry
  - molecular-docking
  - virtual-screening
  - drug-discovery
  - gnina
  - dud-e
pretty_name: DUD-E Docked Poses (gnina virtual screening)
configs:
  - config_name: default
    data_files:
      - split: train
        path: dude_gnina_scores.parquet
---

# DUD-E Docked Poses (gnina virtual screening)

The docked poses from `dude_vs.tgz`, produced by the Koes lab at the University
of Pittsburgh for *Virtual Screening with Gnina 1.0*.

The original is one 14.7 GB archive that must be read start to finish. Here it is
split by target into `dude-vs/`, one archive per DUD-E target, so you can download
only the targets you need:

```bash
hf download Kingldore/dude-vs dude-vs/cdk2.tar.gz --repo-type dataset
tar -xzf dude-vs/cdk2.tar.gz
```

102 targets, 4,363 files, 14.7 GB in total. The contents are unchanged from the
original; only the packaging differs.

## Score table

`dude_gnina_scores.parquet` summarises every docked pose into one row per
`(target, compound_id)` — 1,422,897 rows, 22,784 actives and 1,400,113 decoys.

| column | meaning |
|---|---|
| `target` | DUD-E target name |
| `compound_id` | ZINC or CHEMBL identifier |
| `label` | 1 = active, 0 = decoy |
| `n_poses` | poses the statistics were computed over |
| `gnina_best_*` | value at the pose with the highest CNNscore |
| `gnina_mean_*`, `gnina_std_*` | mean and population standard deviation over all poses |
| `receptor_pdb` | archive path to the receptor structure this target was docked against |
| `crystal_structure` | archive path to the co-crystallized ligand defining the binding site |

The four score families are `minimized_affinity`, `cnn_score`, `cnn_affinity`,
and `cnn_vs` (CNNscore x CNNaffinity, computed per pose then aggregated).

`minimized_affinity` is the empirical docking score, from the column the summary
files label `Vina`. DUD-E was docked with default smina arguments
(`--seed 0 --autobox_add 4 --num_modes 9`), so this is the Vina scoring
function, and `num_modes 9` is why most ligands have nine poses. The pose files
are named `*_docked_vinardo.sdf.gz` because Vinardo rescoring was also carried
out; those scores are in a separate `vinardo.summary` and are not included here.

All four `gnina_best_*` values come from the **same** pose — the one with the
highest CNNscore — rather than each column being maximised independently.

Most ligands have 9 poses. A few are docked more than once against a target;
identical pose rows are dropped and the rest pooled, so `n_poses` can exceed 9.

**Original download:** <https://bits.csb.pitt.edu/files/gninavs/dude_vs.tgz>

## Citation

Please cite both the method and the underlying benchmark.

**gnina virtual screening** — the source of these docked poses:

```bibtex
@article{sunseri2021virtual,
  title   = {Virtual Screening with Gnina 1.0},
  author  = {Sunseri, Jocelyn and Koes, David Ryan},
  journal = {Molecules},
  volume  = {26},
  number  = {23},
  pages   = {7369},
  year    = {2021},
  doi     = {10.3390/molecules26237369}
}
```

**DUD-E** — the benchmark set that was docked:

```bibtex
@article{mysinger2012directory,
  title   = {Directory of Useful Decoys, Enhanced (DUD-E): Better Ligands and
             Decoys for Better Benchmarking},
  author  = {Mysinger, Michael M. and Carchia, Michael and Irwin, John J. and
             Shoichet, Brian K.},
  journal = {Journal of Medicinal Chemistry},
  volume  = {55},
  number  = {14},
  pages   = {6582--6594},
  year    = {2012},
  doi     = {10.1021/jm300687e}
}
```

## Links

- Paper: <https://doi.org/10.3390/molecules26237369>
- DUD-E paper: <https://doi.org/10.1021/jm300687e>
- gnina software: <https://github.com/gnina/gnina>
- DUD-E: <https://dude.docking.org/>
- Koes lab file index: <https://bits.csb.pitt.edu/files/>

## License

This is a mirror hosted for convenience; the data belongs to its original
authors and no additional licence is granted here.