File size: 2,582 Bytes
4d5d728
 
d5f29e3
4d5d728
d5f29e3
 
4d5d728
 
 
 
d5f29e3
 
cb89fa2
d5f29e3
 
 
 
 
4d5d728
 
cb89fa2
4d5d728
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cb89fa2
4d5d728
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
cb89fa2
4d5d728
 
 
 
 
 
 
 
 
 
 
 
 
 
cb89fa2
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
---
language:
  - en
tags:
  - chemistry
  - biology
pretty_name: >-
  Processed NCI Open Compounds Structures for Docking, Cofold, and Affinity
  Prediction
size_categories:
  - 100K<n<1M

configs:
  - config_name: default
    data_files:
      - split: train
        path: nci_compounds.tsv
    delimiter: "\t"
---

# Curated NCI Open Compounds dataset

A curated set of the NCI Open Compounds with compatible mol2 and pdbqt files safe for cofolding and docking applications

## Quickstart Usage

### Install HuggingFace Datasets package

Each subset can be loaded into python using the Huggingface [datasets](https://huggingface.co/docs/datasets/index) library.
First, from the command line install the `datasets` library

    $ pip install datasets

Optionally set the cache directory, e.g.

    $ HF_HOME=${HOME}/.cache/huggingface/
    $ export HF_HOME

then, from within python load the datasets library

    >>> import datasets

### Load model datasets
   
To load one of the `NCI_Open_Compounds` model datasets, use `datasets.load_dataset(...)`:

    >>> dataset_tag = "train"
    >>> dataset_models = datasets.load_dataset(
      path = "leebecca/NCI_Open_Compounds",
      name = f"{dataset_tag}_models",
      data_dir = f"{dataset_tag}")['train']

and the dataset is loaded as a `datasets.arrow_dataset.Dataset`

    >>> dataset_models
    Dataset({
        features: [    
          'NSC',
          'duplicate_idx',
          'CID',
          'SID',
          'CAS',
          'entry_id',
          'entry_name',
          'name',
          'formula',
          'smiles',
          'mw',
          'tot_q',
          'tot_abs_q',
          'chiralities_consistent',
          'chiral_flag',
          'flags',
          'charging_adjusted_penalty',
          'ionization_penalty',
          'ionization_penalty_charging',
          'ionization_penalty_neutral',
          'state_penalty',
          'energy',
          'tautomer_probability',
          'input_file',
          'structure_evaluation',
          'chemistry_notes',
          'pka_notes'
        ],
        num_rows: 445794
    })


## Dataset Details

### Dataset Description
The set contains ligprep output of the minimized 3D structures, expanded to include possible protonation states and tautomers capped at 3 per ligand.


- **Acknowledgements:**
We kindly acknowledge RosettaCommons

### Dataset Sources
https://wiki.nci.nih.gov/spaces/NCIDTPdata/pages/155844992/Chemical+Data

## Uses

### Out-of-Scope Use


### Source Data

## Citation

## Dataset Card Authors
Becca Lee (beccalee5@g.ucla.edu)