File size: 1,402 Bytes
9231dbc
bfb5ed5
 
0eb88ce
 
 
 
 
bfb5ed5
 
9231dbc
 
0eb88ce
 
 
 
 
 
 
 
 
 
 
 
9231dbc
0eb88ce
 
 
9231dbc
 
 
0eb88ce
 
 
 
9231dbc
bfb5ed5
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
---
pretty_name: Simeonov2008 Bioactive Compounds
tags:
- bioassay
- chemical
- small-molecule
- SMILES
- PubChem
language: en
license: unknown
dataset_info:
  features:
  - name: AID
    dtype: int64
  - name: CID
    dtype: int64
  - name: SMILES
    dtype: large_string
  - name: InChI
    dtype: large_string
  - name: InChIKey
    dtype: large_string
  - name: SMILES_sanitized
    dtype: large_string
  splits:
  - name: train
    num_bytes: 2108290
    num_examples: 7109
  download_size: 977966
  dataset_size: 2108290
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
---

# Simeonov2008 Bioactive Compounds

## Dataset Description
This dataset contains small-molecule compounds tested in multiple PubChem bioassays (AID 587, 588, 590, 591, 593, 594). It includes canonical SMILES, sanitized SMILES, InChI, and InChIKey identifiers for 7,109 unique compounds. Sanitization was performed to standardize chemical structures, remove counterions, and normalize functional groups.  

**Citation:**  
Simeonov, A., et al. (2008). *High-throughput screening for bioactive compounds*. PubChem BioAssay Database. https://pubchem.ncbi.nlm.nih.gov/

## Quick-Start Guide

```python
from datasets import load_dataset

# Load the dataset from Hugging Face
dataset = load_dataset("adsfibonacci/Simeonov2008")
df = dataset['train'].to_pandas()

# Preview
print(df.head())