PatSnap/chemical-structure
βοΈ Dataset Summary A large-scale chemical structure database with 1 million compounds, providing standardized cheminformatics identifiers and taxonomic classification. Designed for structure-based drug discovery, similarity search, and chemical space analysis. π Key Features Standard Identifiers: Every record includes InChI, InChIKey, and molecular formula; isomeric SMILES present for 99.8% of records. Multiple Name Forms: JChem-generated names (97%), IUPAC names (22%), and compound namesβ¦ See the full description on the dataset page: https://huggingface.co/datasets/PatSnap/chemical-structure.
βοΈ Dataset Summary
A large-scale chemical structure database with 1 million compounds, providing standardized cheminformatics identifiers and taxonomic classification. Designed for structure-based drug discovery, similarity search, and chemical space analysis.
π Key Features
- Standard Identifiers: Every record includes InChI, InChIKey, and molecular formula; isomeric SMILES present for 99.8% of records.
- Multiple Name Forms: JChem-generated names (97%), IUPAC names (22%), and compound names where available.
- ClassyFire Taxonomy: Hierarchical chemical classification for ~11% of records, enabling class-level filtering.
- Patent Linkage:
patent_countconnects compounds to their IP landscape.
π» Quick Start
from datasets import load_dataset
dataset = load_dataset("your-org/chemical-structures", split="train")
print(dataset[0]["inchi_key"])
# Output: 'AAACIFUGYABHIU-UHFFFAOYSA-M'
print(dataset[0]["isometric_smiles"])
# Output: '[O-][Cl](=O)(=O)=O.[I-][Pt++]12[NH2]CC[NH]1CC[NH2]2'
print(dataset[0]["mol_formula"])
# Output: 'C4H13ClIN3O4Pt'π Resources
- Developer Portal: open.patsnap.com
- PatSnap Life Sciences: patsnap.com/solutions/life-sciences
- GitHub: github.com/patsnap
