Datasets:
Add dataset card
Browse files
README.md
CHANGED
|
@@ -1,37 +1,87 @@
|
|
| 1 |
---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
-
|
| 5 |
-
|
| 6 |
-
-
|
| 7 |
-
|
| 8 |
-
-
|
| 9 |
-
|
| 10 |
-
-
|
| 11 |
-
|
| 12 |
-
- name: InChIKey
|
| 13 |
-
dtype: string
|
| 14 |
-
- name: SMILES_sanitized
|
| 15 |
-
dtype: string
|
| 16 |
-
splits:
|
| 17 |
-
- name: train
|
| 18 |
-
num_bytes: 1784959
|
| 19 |
-
num_examples: 6398
|
| 20 |
-
- name: test
|
| 21 |
-
num_bytes: 198359
|
| 22 |
-
num_examples: 711
|
| 23 |
-
- name: full
|
| 24 |
-
num_bytes: 1983319
|
| 25 |
-
num_examples: 7109
|
| 26 |
-
download_size: 2007452
|
| 27 |
-
dataset_size: 3966637
|
| 28 |
-
configs:
|
| 29 |
-
- config_name: default
|
| 30 |
-
data_files:
|
| 31 |
-
- split: train
|
| 32 |
-
path: data/train-*
|
| 33 |
-
- split: test
|
| 34 |
-
path: data/test-*
|
| 35 |
-
- split: full
|
| 36 |
-
path: data/full-*
|
| 37 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- tabular-classification
|
| 5 |
+
tags:
|
| 6 |
+
- chemistry
|
| 7 |
+
- drug-discovery
|
| 8 |
+
- pubchem
|
| 9 |
+
- bioassay
|
| 10 |
+
- smiles
|
| 11 |
+
- rdkit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 12 |
---
|
| 13 |
+
|
| 14 |
+
# Simeonov2008: PubChem Bioassay Active Compounds
|
| 15 |
+
|
| 16 |
+
## Overview
|
| 17 |
+
|
| 18 |
+
Active compounds from PubChem qHTS bioassay screenings (AIDs: 587, 588, 590, 591, 592, 593, 594) based on Simeonov et al. (2008). SMILES were sanitized using RDKit MolStandardize.
|
| 19 |
+
|
| 20 |
+
| Metric | Value |
|
| 21 |
+
|--------|-------|
|
| 22 |
+
| Total rows | 7109 |
|
| 23 |
+
| Unique compounds | 6743 |
|
| 24 |
+
| Assays | 6 |
|
| 25 |
+
|
| 26 |
+
## Quick Start
|
| 27 |
+
|
| 28 |
+
```python
|
| 29 |
+
from datasets import load_dataset
|
| 30 |
+
|
| 31 |
+
# Load dataset
|
| 32 |
+
dataset = load_dataset("jpraise/Simeonov2008")
|
| 33 |
+
|
| 34 |
+
# Get full data as DataFrame
|
| 35 |
+
df = dataset['full'].to_pandas()
|
| 36 |
+
print(df.head())
|
| 37 |
+
```
|
| 38 |
+
|
| 39 |
+
## Data Fields
|
| 40 |
+
|
| 41 |
+
| Column | Description |
|
| 42 |
+
|--------|-------------|
|
| 43 |
+
| AID | PubChem Assay ID |
|
| 44 |
+
| CID | PubChem Compound ID |
|
| 45 |
+
| SMILES | Original SMILES from PubChem |
|
| 46 |
+
| InChI | IUPAC InChI identifier |
|
| 47 |
+
| InChIKey | Hashed InChI key |
|
| 48 |
+
| SMILES_sanitized | Standardized SMILES via RDKit |
|
| 49 |
+
|
| 50 |
+
## Assays
|
| 51 |
+
|
| 52 |
+
| AID | Link |
|
| 53 |
+
|-----|------|
|
| 54 |
+
| 587 | [PubChem](https://pubchem.ncbi.nlm.nih.gov/bioassay/587) |
|
| 55 |
+
| 588 | [PubChem](https://pubchem.ncbi.nlm.nih.gov/bioassay/588) |
|
| 56 |
+
| 590 | [PubChem](https://pubchem.ncbi.nlm.nih.gov/bioassay/590) |
|
| 57 |
+
| 591 | [PubChem](https://pubchem.ncbi.nlm.nih.gov/bioassay/591) |
|
| 58 |
+
| 592 | [PubChem](https://pubchem.ncbi.nlm.nih.gov/bioassay/592) |
|
| 59 |
+
| 593 | [PubChem](https://pubchem.ncbi.nlm.nih.gov/bioassay/593) |
|
| 60 |
+
| 594 | [PubChem](https://pubchem.ncbi.nlm.nih.gov/bioassay/594) |
|
| 61 |
+
|
| 62 |
+
## SMILES Sanitization
|
| 63 |
+
|
| 64 |
+
RDKit MolStandardize pipeline:
|
| 65 |
+
1. LargestFragmentChooser - Remove salts/counterions
|
| 66 |
+
2. Normalizer - Standardize functional groups
|
| 67 |
+
3. Uncharger - Neutralize charges
|
| 68 |
+
4. TautomerEnumerator - Canonicalize tautomers
|
| 69 |
+
|
| 70 |
+
## Citation
|
| 71 |
+
|
| 72 |
+
```bibtex
|
| 73 |
+
@article{simeonov2008,
|
| 74 |
+
title={Fluorescence spectroscopic profiling of compound libraries},
|
| 75 |
+
author={Simeonov, Anton and Jadhav, Ajit and Thomas, Craig J and others},
|
| 76 |
+
journal={Journal of Medicinal Chemistry},
|
| 77 |
+
volume={51},
|
| 78 |
+
number={8},
|
| 79 |
+
pages={2363--2371},
|
| 80 |
+
year={2008},
|
| 81 |
+
doi={10.1021/jm701301m}
|
| 82 |
+
}
|
| 83 |
+
```
|
| 84 |
+
|
| 85 |
+
## License
|
| 86 |
+
|
| 87 |
+
CC-BY-4.0. Source data from PubChem (public domain).
|