leebecca commited on
Commit
4d5d728
·
verified ·
1 Parent(s): 63a1e51

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +109 -0
README.md ADDED
@@ -0,0 +1,109 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - chemistry
6
+ - biology
7
+ pretty_name: >-
8
+ Processed NCI Open Compounds Structures for Docking, Cofold, and Affinity
9
+ Prediction
10
+ size_categories:
11
+ - 100K<n<1M
12
+ configs:
13
+ - config_name: default
14
+ data_files: "nci_compounds.tsv"
15
+ ---
16
+
17
+ # Curated ProteinMPNN training dataset
18
+
19
+ A curated set of the NCI Open Compounds with compatible mol2 and pdbqt files safe for cofolding and docking applications
20
+
21
+ ## Quickstart Usage
22
+
23
+ ### Install HuggingFace Datasets package
24
+
25
+ Each subset can be loaded into python using the Huggingface [datasets](https://huggingface.co/docs/datasets/index) library.
26
+ First, from the command line install the `datasets` library
27
+
28
+ $ pip install datasets
29
+
30
+ Optionally set the cache directory, e.g.
31
+
32
+ $ HF_HOME=${HOME}/.cache/huggingface/
33
+ $ export HF_HOME
34
+
35
+ then, from within python load the datasets library
36
+
37
+ >>> import datasets
38
+
39
+ ### Load model datasets
40
+
41
+ To load one of the `NCI_Open_Compounds` model datasets, use `datasets.load_dataset(...)`:
42
+
43
+ >>> dataset_tag = "train"
44
+ >>> dataset_models = datasets.load_dataset(
45
+ path = "leebecca/group_mpnn",
46
+ name = f"{dataset_tag}_models",
47
+ data_dir = f"{dataset_tag}")['train']
48
+
49
+ and the dataset is loaded as a `datasets.arrow_dataset.Dataset`
50
+
51
+ >>> dataset_models
52
+ Dataset({
53
+ features: [
54
+ 'NSC',
55
+ 'duplicate_idx',
56
+ 'CID',
57
+ 'SID',
58
+ 'CAS',
59
+ 'entry_id',
60
+ 'entry_name',
61
+ 'name',
62
+ 'formula',
63
+ 'smiles',
64
+ 'mw',
65
+ 'tot_q',
66
+ 'tot_abs_q',
67
+ 'chiralities_consistent',
68
+ 'chiral_flag',
69
+ 'flags',
70
+ 'charging_adjusted_penalty',
71
+ 'ionization_penalty',
72
+ 'ionization_penalty_charging',
73
+ 'ionization_penalty_neutral',
74
+ 'state_penalty',
75
+ 'energy',
76
+ 'tautomer_probability',
77
+ 'input_file',
78
+ 'structure_evaluation',
79
+ 'chemistry_notes',
80
+ 'pka_notes'
81
+ ],
82
+ num_rows: 445794
83
+ })
84
+
85
+
86
+ ## Dataset Details
87
+
88
+ ### Dataset Description
89
+ The set contains ligprep output of the minimized 3D structures, expanded to include possible protonation states and tautomers capped at 3 per ligand.
90
+
91
+
92
+ - **Acknowledgements:**
93
+ We kindly acknowledge the ProteinMPNN team, RosettaCommons, and the following institutions: University of California, Los Angeles; University of Maryland; University of Oregon; University of Michigan; University of Pennsylvania; and the Wistar Institute.
94
+
95
+
96
+ ### Dataset Sources
97
+ https://wiki.nci.nih.gov/spaces/NCIDTPdata/pages/155844992/Chemical+Data
98
+
99
+ ## Uses
100
+
101
+ ### Out-of-Scope Use
102
+
103
+
104
+ ### Source Data
105
+
106
+ ## Citation
107
+
108
+ ## Dataset Card Authors
109
+ Miranda Simpson (miranda13nicoles@gmail.com), Becca Lee (beccalee5@g.ucla.edu), Nathaniel Felbinger (nfelbing@umd.edu), Pratyush Dhal (pdhal@umich.edu), Colby Agostino (colby.agostino@pennmedicine.upenn.edu)