Claude-skill-registry chem-vis
Generate 2D structure images and interactive 3D viewers from chemical names or SMILES. Supports PNG/SVG output for 2D and 3Dmol.js HTML viewers for 3D conformers.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/chem-skill" ~/.claude/skills/majiayu000-claude-skill-registry-chem-vis && rm -rf "$T"
manifest:
skills/data/chem-skill/SKILL.mdsource content
Chemical Visualization Skill
Overview
Generate publication-quality 2D molecular structure images and interactive 3D conformer viewers from chemical names, SMILES, or InChI strings.
Needs network access to
*.nih.gov servers to access PubChem for common names like caffeine, testosterone, estrogen, etc.
Much of the code was generated by Claude, with careful validation, error fixing, and OPSIN integration by Geoff Hutchison.
Quick Start
# 2D structure image python scripts/chem_2d.py "caffeine" --output caffeine.png # 3D interactive viewer python scripts/chem_3d.py "caffeine" --output caffeine.html # Both at once python scripts/chem_vis.py "caffeine" --both --output-dir ./caffeine/
Dependencies
pip install rdkit pubchempy py2opsin --break-system-packages
Scripts
| Script | Purpose |
|---|---|
| Generate 2D structure images (PNG/SVG) |
| Generate 3D conformer viewers (HTML) |
| Unified CLI for both |
| Shared utilities (name resolution, etc.) |
2D Structure Images
Generate static images of molecular structures.
Usage
python scripts/chem_2d.py "aspirin" --output aspirin.png python scripts/chem_2d.py "CCO" --input-type smiles --output ethanol.svg --format svg python scripts/chem_2d.py "glucose" --width 400 --height 400 --output glucose.png
Options
| Option | Description | Default |
|---|---|---|
, | Input: , , | |
, | Output file path | |
, | Output: , | |
, | Width in pixels | 300 |
, | Height in pixels | 300 |
, | Show Kekulé structure | False |
, | Display atom indices | False |
| Atom indices to highlight | None |
Python API
from scripts.chem_2d import chemical_to_image, batch_convert # Single molecule chemical_to_image("caffeine", "caffeine.png", width=400, height=400) # Batch conversion chemicals = ["aspirin", "ibuprofen", "acetaminophen"] results = batch_convert(chemicals, output_dir="./structures/", format="svg")
3D Conformer Viewers
Generate interactive HTML viewers with 3Dmol.js.
Usage
python scripts/chem_3d.py "dopamine" --output dopamine.html python scripts/chem_3d.py "CCO" --input-type smiles --style ballstick --output ethanol.html python scripts/chem_3d.py "serotonin" --embed --output serotonin_widget.html
Options
| Option | Description | Default |
|---|---|---|
, | Input: , | |
, | Output file path | |
, | Viewer width (px) | 500 |
, | Viewer height (px) | 400 |
, | Style: , , , | |
, | Conformers to sample | 10 |
| Skip MMFF optimization | False |
| Hide interactive buttons | False |
| Output snippet without HTML wrapper | False |
Embed Mode
Use
--embed to generate a snippet for inserting into existing web pages:
python scripts/chem_3d.py "aspirin" --embed --output aspirin_widget.html
The parent page must load 3Dmol.js:
<script src="https://3dmol.org/build/3Dmol-min.js"></script>
Each viewer gets a unique ID, so multiple molecules can coexist on one page.
Python API
from scripts.chem_3d import chemical_to_3d, generate_conformer, generate_html_viewer # Full pipeline chemical_to_3d("caffeine", "caffeine.html") # Step by step from scripts.common import get_smiles smiles = get_smiles("caffeine", "name") mol_block = generate_conformer(smiles, num_conformers=20) html = generate_html_viewer(mol_block, title="Caffeine", width=600, height=500) # Embeddable snippet snippet = generate_html_viewer(mol_block, title="Caffeine", embed=True)
Unified CLI
Generate both 2D and 3D outputs with one command.
# 2D only python scripts/chem_vis.py "caffeine" --2d --output caffeine.png # 3D only python scripts/chem_vis.py "caffeine" --3d --output caffeine.html # Both python scripts/chem_vis.py "caffeine" --both --output-dir ./caffeine/
Examples
Generate structures for a lecture
from scripts.chem_2d import batch_convert neurotransmitters = ["dopamine", "serotonin", "acetylcholine", "GABA", "glutamate"] batch_convert(neurotransmitters, output_dir="./lecture_slides/", width=400, height=400)
Comparison page with multiple 3D viewers
from scripts.chem_3d import generate_conformer, generate_html_viewer from scripts.common import get_smiles molecules = ["aspirin", "ibuprofen", "naproxen"] page = '''<!DOCTYPE html> <html> <head> <script src="https://3dmol.org/build/3Dmol-min.js"></script> <style> .container { display: flex; gap: 20px; flex-wrap: wrap; padding: 20px; } </style> </head> <body> <h1>NSAID Comparison</h1> <div class="container"> ''' for mol_name in molecules: smiles = get_smiles(mol_name, "name") mol_block = generate_conformer(smiles) page += generate_html_viewer(mol_block, title=mol_name.title(), width=350, height=300, embed=True) page += '</div></body></html>' with open("nsaid_comparison.html", "w") as f: f.write(page)
Troubleshooting
"Could not find chemical"
- Check if network access is enabled to
sites for PubChem use.*.nih.gov - Check spelling
- Try alternative names (IUPAC vs common)
- Use SMILES directly:
--input-type smiles
"Could not generate 3D conformer"
- Try
flag--no-optimize - Increase
count--conformers - Some structures (metals, unusual bonding) may not embed well
Poor 2D layout
- RDKit's 2D coordinate generation works best for typical organic molecules
- Very large or unusual structures may need manual adjustment
3D viewer doesn't load
- Check internet connection (3Dmol.js loads from CDN)
- Check browser console for errors
- For embed mode, ensure parent page loads 3Dmol.js first