Datamol Cheminformatics Skill
Overview
Datamol is a Python library that provides a lightweight, Pythonic abstraction layer over RDKit for molecular cheminformatics. Simplify complex molecular operations with sensible defaults, efficient parallelization, and modern I/O capabilities. All molecular objects are native rdkit.Chem.Mol instances, ensuring full compatibility with the RDKit ecosystem.
Version note: Examples target datamol 0.12.x (PyPI stable: 0.12.5, June 2024). Since 0.10.0, modules are lazy-loaded by default (set DATAMOL_DISABLE_LAZY_LOADING=1 to disable). Since 0.12.2, RDKit is a direct PyPI dependency of datamol. Fingerprints use RDKit's rdFingerprintGenerator API (0.12.5+).
Key capabilities:
- Molecular format conversion (SMILES, SELFIES, InChI)
- Structure standardization and sanitization
- Molecular descriptors and fingerprints
- 3D conformer generation and analysis
- Clustering and diversity selection
- Scaffold and fragment analysis
- Chemical reaction application
- Visualization and alignment
- Batch processing with parallelization
- Cloud storage support via fsspec
Installation and Setup
Guide users to install datamol:
uv pip install datamol
RDKit is installed automatically with datamol. For remote file paths (S3, GCS, HTTP), install the matching fsspec backend:
uv pip install s3fs # AWS S3
uv pip install gcsfs # Google Cloud Storage
Import convention:
import datamol as dm
Core Workflows
Ten workflow areas, each with worked code, are documented in
references/core_workflows.md:
| # |
Area |
Covers |
| 1 |
Basic molecule handling |
to_mol, batch conversion, error handling, canonical and isomeric SMILES, sanitization and full standardization |
| 2 |
Reading and writing files |
SDF, SMILES, CSV, Excel with rendered structures, the universal reader/writer, and cloud or HTTPS paths |
| 3 |
Descriptors and properties |
the standard descriptor set, parallel computation, aromaticity, stereochemistry, flexibility, and filtering |
| 4 |
Fingerprints and similarity |
ECFP4 and other types, pairwise and cross-set distances, nearest-neighbour lookup (Tanimoto distance = 1 − similarity) |
| 5 |
Clustering and diversity |
similarity clustering, diverse subset picking, and cluster centroids |
| 6 |
Scaffold analysis |
Bemis-Murcko scaffolds, grouping and counting, and scaffold-disjoint train/test splits |
| 7 |
Fragmentation |
fragmenting molecules, finding common fragments across a library, and fragment-based scoring |
| 8 |
3D conformers |
generation, access, RMSD clustering, representative selection, and SASA |
| 9 |
Visualization |
grids, files, publication SVG, substructure alignment, atom and bond highlighting, conformer display |
| 10 |
Chemical reactions |
reaction SMARTS, applying to a molecule or a whole library |
Three end-to-end pipelines — load/filter/analyze, SAR by scaffold series, and virtual
screening — are in references/workflow_patterns.md.
Parallelization
Datamol includes built-in parallelization for many operations. Use n_jobs parameter:
n_jobs=1: Sequential (no parallelization)
n_jobs=-1: Use all available CPU cores
n_jobs=4: Use 4 cores
Functions supporting parallelization:
dm.read_sdf(..., n_jobs=-1)
dm.descriptors.batch_compute_many_descriptors(..., n_jobs=-1)
dm.cluster_mols(..., n_jobs=-1)
dm.pdist(..., n_jobs=-1)
dm.conformers.sasa(..., n_jobs=-1)
Progress bars: Many batch operations support progress=True parameter.
Reference Documentation
For detailed API documentation, consult these reference files:
references/core_api.md: Core namespace functions (conversions, standardization, fingerprints, clustering)
references/io_module.md: File I/O operations (read/write SDF, CSV, Excel, remote files)
references/conformers_module.md: 3D conformer generation, clustering, SASA calculations
references/descriptors_viz.md: Molecular descriptors and visualization functions
references/fragments_scaffolds.md: Scaffold extraction, BRICS/RECAP fragmentation
references/reactions_data.md: Chemical reactions and toy datasets
Best Practices
Always standardize molecules from external sources:
mol = dm.standardize_mol(mol, disconnect_metals=True, normalize=True, reionize=True)
Check for None values after molecule parsing:
mol = dm.to_mol(smiles)
if mol is None:
# Handle invalid SMILES
Use parallel processing for large datasets:
result = dm.operation(..., n_jobs=-1, progress=True)
Use cloud I/O only when requested — confirm remote write paths; install s3fs/gcsfs as needed:
df = dm.read_sdf("s3://bucket/compounds.sdf")
Use appropriate fingerprints for similarity:
- ECFP (Morgan): General purpose, structural similarity
- MACCS: Fast, smaller feature space
- Atom pairs: Considers atom pairs and distances
Consider scale limitations:
- Butina clustering: ~1,000 molecules (full distance matrix)
- For larger datasets: Use diversity selection or hierarchical methods
Scaffold splitting for ML: Ensure proper train/test separation by scaffold
Align molecules when visualizing SAR series
Error Handling
# Safe molecule creation
def safe_to_mol(smiles):
try:
mol = dm.to_mol(smiles)
if mol is not None:
mol = dm.standardize_mol(mol)
return mol
except Exception as e:
print(f"Failed to process {smiles}: {e}")
return None
# Safe batch processing
valid_mols = []
for smiles in smiles_list:
mol = safe_to_mol(smiles)
if mol is not None:
valid_mols.append(mol)
Integration with Machine Learning
Datamol ships with scipy and scikit-learn as dependencies. Import them as normal PyPI packages — they are not scripts bundled in this skill.
import numpy as np
# Feature generation
X = np.array([dm.to_fp(mol) for mol in mols])
# Or descriptors
desc_df = dm.descriptors.batch_compute_many_descriptors(mols, n_jobs=-1)
X = desc_df.values
# Train model (scikit-learn PyPI package)
from sklearn.ensemble import RandomForestRegressor # third-party library
model = RandomForestRegressor()
model.fit(X, y_target)
# Predict
predictions = model.predict(X_test)
Troubleshooting
Issue: Molecule parsing fails
- Solution: Use
dm.standardize_smiles() first or try dm.fix_mol()
Issue: Memory errors with clustering
- Solution: Use
dm.pick_diverse() instead of full clustering for large sets
Issue: Slow conformer generation
- Solution: Reduce
n_confs or increase rms_cutoff to generate fewer conformers
Issue: Remote file access fails
- Solution: Install the matching fsspec backend (
uv pip install s3fs or gcsfs) and verify only the provider credentials needed for that backend are set (see Remote file support above)
Additional Resources
Source: K-Dense-AI/scientific-agent-skills → skills/datamol/SKILL.md
1---2name: datamol3description: Pythonic wrapper around RDKit with simplified interface and sensible defaults. Preferred for standard drug discovery including SMILES parsing, standardization, descriptors, fingerprints, clustering, 3D conformers, parallel processing. Returns native rdkit.Chem.Mol objects. For advanced control or custom parameters, use rdkit directly.4---5
6
7# Datamol Cheminformatics Skill
8
9## Overview
10
11Datamol is a Python library that provides a lightweight, Pythonic abstraction layer over RDKit for molecular cheminformatics. Simplify complex molecular operations with sensible defaults, efficient parallelization, and modern I/O capabilities. All molecular objects are native `rdkit.Chem.Mol` instances, ensuring full compatibility with the RDKit ecosystem.
12
13**Version note:** Examples target **datamol 0.12.x** (PyPI stable: **0.12.5**, June 2024). Since 0.10.0, modules are lazy-loaded by default (set `DATAMOL_DISABLE_LAZY_LOADING=1` to disable). Since 0.12.2, RDKit is a direct PyPI dependency of datamol. Fingerprints use RDKit's `rdFingerprintGenerator` API (0.12.5+).
14
15**Key capabilities**:
16- Molecular format conversion (SMILES, SELFIES, InChI)
17- Structure standardization and sanitization
18- Molecular descriptors and fingerprints
19- 3D conformer generation and analysis
20- Clustering and diversity selection
21- Scaffold and fragment analysis
22- Chemical reaction application
23- Visualization and alignment
24- Batch processing with parallelization
25- Cloud storage support via fsspec
26
27## Installation and Setup
28
29Guide users to install datamol:
30
31```bash
32uv pip install datamol
33```
34
35RDKit is installed automatically with datamol. For remote file paths (S3, GCS, HTTP), install the matching fsspec backend:
36
37```bash
38uv pip install s3fs # AWS S3
39uv pip install gcsfs # Google Cloud Storage
40```
41
42**Import convention**:
43```python
44import datamol as dm
45```
46
47## Core Workflows
48
49Ten workflow areas, each with worked code, are documented in
50[references/core_workflows.md](references/core_workflows.md):
51
52| # | Area | Covers |
53| --- | --- | --- |
54| 1 | Basic molecule handling | `to_mol`, batch conversion, error handling, canonical and isomeric SMILES, sanitization and full standardization |
55| 2 | Reading and writing files | SDF, SMILES, CSV, Excel with rendered structures, the universal reader/writer, and cloud or HTTPS paths |
56| 3 | Descriptors and properties | the standard descriptor set, parallel computation, aromaticity, stereochemistry, flexibility, and filtering |
57| 4 | Fingerprints and similarity | ECFP4 and other types, pairwise and cross-set distances, nearest-neighbour lookup (Tanimoto distance = 1 − similarity) |
58| 5 | Clustering and diversity | similarity clustering, diverse subset picking, and cluster centroids |
59| 6 | Scaffold analysis | Bemis-Murcko scaffolds, grouping and counting, and scaffold-disjoint train/test splits |
60| 7 | Fragmentation | fragmenting molecules, finding common fragments across a library, and fragment-based scoring |
61| 8 | 3D conformers | generation, access, RMSD clustering, representative selection, and SASA |
62| 9 | Visualization | grids, files, publication SVG, substructure alignment, atom and bond highlighting, conformer display |
63| 10 | Chemical reactions | reaction SMARTS, applying to a molecule or a whole library |
64
65Three end-to-end pipelines — load/filter/analyze, SAR by scaffold series, and virtual
66screening — are in [references/workflow_patterns.md](references/workflow_patterns.md).
67
68## Parallelization
69
70Datamol includes built-in parallelization for many operations. Use `n_jobs` parameter:
71- `n_jobs=1`: Sequential (no parallelization)
72- `n_jobs=-1`: Use all available CPU cores
73- `n_jobs=4`: Use 4 cores
74
75**Functions supporting parallelization**:
76- `dm.read_sdf(..., n_jobs=-1)`
77- `dm.descriptors.batch_compute_many_descriptors(..., n_jobs=-1)`
78- `dm.cluster_mols(..., n_jobs=-1)`
79- `dm.pdist(..., n_jobs=-1)`
80- `dm.conformers.sasa(..., n_jobs=-1)`
81
82**Progress bars**: Many batch operations support `progress=True` parameter.
83
84## Reference Documentation
85
86For detailed API documentation, consult these reference files:
87
88- **`references/core_api.md`**: Core namespace functions (conversions, standardization, fingerprints, clustering)
89- **`references/io_module.md`**: File I/O operations (read/write SDF, CSV, Excel, remote files)
90- **`references/conformers_module.md`**: 3D conformer generation, clustering, SASA calculations
91- **`references/descriptors_viz.md`**: Molecular descriptors and visualization functions
92- **`references/fragments_scaffolds.md`**: Scaffold extraction, BRICS/RECAP fragmentation
93- **`references/reactions_data.md`**: Chemical reactions and toy datasets
94
95## Best Practices
96
971. **Always standardize molecules** from external sources:
98 ```python
99 mol = dm.standardize_mol(mol, disconnect_metals=True, normalize=True, reionize=True)
100 ```
101
1022. **Check for None values** after molecule parsing:
103 ```python
104 mol = dm.to_mol(smiles)
105 if mol is None:
106 # Handle invalid SMILES
107 ```
108
1093. **Use parallel processing** for large datasets:
110 ```python
111 result = dm.operation(..., n_jobs=-1, progress=True)
112 ```
113
1144. **Use cloud I/O only when requested** — confirm remote write paths; install `s3fs`/`gcsfs` as needed:
115 ```python
116 df = dm.read_sdf("s3://bucket/compounds.sdf")
117 ```
118
1195. **Use appropriate fingerprints** for similarity:
120 - ECFP (Morgan): General purpose, structural similarity
121 - MACCS: Fast, smaller feature space
122 - Atom pairs: Considers atom pairs and distances
123
1246. **Consider scale limitations**:
125 - Butina clustering: ~1,000 molecules (full distance matrix)
126 - For larger datasets: Use diversity selection or hierarchical methods
127
1287. **Scaffold splitting for ML**: Ensure proper train/test separation by scaffold
129
1308. **Align molecules** when visualizing SAR series
131
132## Error Handling
133
134```python
135# Safe molecule creation
136def safe_to_mol(smiles):
137 try:
138 mol = dm.to_mol(smiles)
139 if mol is not None:
140 mol = dm.standardize_mol(mol)
141 return mol
142 except Exception as e:
143 print(f"Failed to process {smiles}: {e}")
144 return None
145
146# Safe batch processing
147valid_mols = []
148for smiles in smiles_list:
149 mol = safe_to_mol(smiles)
150 if mol is not None:
151 valid_mols.append(mol)
152```
153
154## Integration with Machine Learning
155
156Datamol ships with `scipy` and `scikit-learn` as dependencies. Import them as normal PyPI packages — they are not scripts bundled in this skill.
157
158```python
159import numpy as np
160
161# Feature generation
162X = np.array([dm.to_fp(mol) for mol in mols])
163
164# Or descriptors
165desc_df = dm.descriptors.batch_compute_many_descriptors(mols, n_jobs=-1)
166X = desc_df.values
167
168# Train model (scikit-learn PyPI package)
169from sklearn.ensemble import RandomForestRegressor # third-party library
170model = RandomForestRegressor()
171model.fit(X, y_target)
172
173# Predict
174predictions = model.predict(X_test)
175```
176
177## Troubleshooting
178
179**Issue**: Molecule parsing fails
180- **Solution**: Use `dm.standardize_smiles()` first or try `dm.fix_mol()`
181
182**Issue**: Memory errors with clustering
183- **Solution**: Use `dm.pick_diverse()` instead of full clustering for large sets
184
185**Issue**: Slow conformer generation
186- **Solution**: Reduce `n_confs` or increase `rms_cutoff` to generate fewer conformers
187
188**Issue**: Remote file access fails
189- **Solution**: Install the matching fsspec backend (`uv pip install s3fs` or `gcsfs`) and verify only the provider credentials needed for that backend are set (see Remote file support above)
190
191## Additional Resources
192
193- **Datamol Documentation**: https://docs.datamol.io/
194- **RDKit Documentation**: https://www.rdkit.org/docs/
195- **GitHub Repository**: https://github.com/datamol-io/datamol
196
197---
198
199**Source:** [`K-Dense-AI/scientific-agent-skills`](https://github.com/K-Dense-AI/scientific-agent-skills) → `skills/datamol/SKILL.md`