Update README.md
Browse files
README.md
CHANGED
|
@@ -12,37 +12,32 @@ tags:
|
|
| 12 |
- molecular-generation
|
| 13 |
pretty_name: Curated Chemical Structures & Properties
|
| 14 |
size_categories:
|
| 15 |
-
-
|
| 16 |
---
|
| 17 |
|
| 18 |
-
|
| 19 |
|
| 20 |
-
|
| 21 |
|
| 22 |
-
|
| 23 |
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
•
|
| 30 |
-
Rich Physicochemical Features: Pre-computed properties including Molecular Weight (mwt), LogP (xlogp3), Hydrogen Bond Donors (hbd), and Acceptors (hba).
|
| 31 |
-
|
| 32 |
-
•
|
| 33 |
-
Deep Taxonomic Classification: Hierarchical ClassyFire annotations (Kingdom, Superclass, Class, Direct Parent) for chemical space analysis.
|
| 34 |
-
|
| 35 |
-
💻 Quick Start & MCP Integration
|
| 36 |
-
|
| 37 |
-
Integrate chemical structure search into your LLM workflows using our Chemical Structure MCP Tool on GitHub.
|
| 38 |
|
|
|
|
| 39 |
|
| 40 |
```python
|
| 41 |
from datasets import load_dataset
|
| 42 |
|
| 43 |
dataset = load_dataset("your-org/chemical-structures", split="train")
|
| 44 |
-
print(dataset[0]["
|
| 45 |
-
# Output: '
|
|
|
|
|
|
|
|
|
|
|
|
|
| 46 |
```
|
| 47 |
|
| 48 |
## 🔗 Resources
|
|
|
|
| 12 |
- molecular-generation
|
| 13 |
pretty_name: Curated Chemical Structures & Properties
|
| 14 |
size_categories:
|
| 15 |
+
- 1M<n<10M
|
| 16 |
---
|
| 17 |
|
| 18 |
+
⚗️ **Dataset Summary**
|
| 19 |
|
| 20 |
+
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.
|
| 21 |
|
| 22 |
+
**🚀 Key Features**
|
| 23 |
|
| 24 |
+
- **Standard Identifiers:** Every record includes InChI, InChIKey, and molecular formula; isomeric SMILES present for 99.8% of records.
|
| 25 |
+
- **Multiple Name Forms:** JChem-generated names (97%), IUPAC names (22%), and compound names where available.
|
| 26 |
+
- **ClassyFire Taxonomy:** Hierarchical chemical classification for ~11% of records, enabling class-level filtering.
|
| 27 |
+
- **Patent Linkage:** `patent_count` connects compounds to their IP landscape.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
+
**💻 Quick Start**
|
| 30 |
|
| 31 |
```python
|
| 32 |
from datasets import load_dataset
|
| 33 |
|
| 34 |
dataset = load_dataset("your-org/chemical-structures", split="train")
|
| 35 |
+
print(dataset[0]["inchi_key"])
|
| 36 |
+
# Output: 'AAACIFUGYABHIU-UHFFFAOYSA-M'
|
| 37 |
+
print(dataset[0]["isometric_smiles"])
|
| 38 |
+
# Output: '[O-][Cl](=O)(=O)=O.[I-][Pt++]12[NH2]CC[NH]1CC[NH2]2'
|
| 39 |
+
print(dataset[0]["mol_formula"])
|
| 40 |
+
# Output: 'C4H13ClIN3O4Pt'
|
| 41 |
```
|
| 42 |
|
| 43 |
## 🔗 Resources
|