DiffDock Molecular Docking
Runs DiffDock/DiffDock-L to predict protein–small-molecule binding poses and helps you interpret the confidence scores.
Data & AnalyticsAdvanced★ 33,030⑂ 3,248AI score 8/10Last updated: Aug 9, 2026
What it does
- Builds correct DiffDock inference commands from a PDB file (or amino-acid sequence) plus a SMILES string, SDF, or MOL2 ligand.
- Covers single-complex docking, CSV-driven batch docking, and large virtual screening with pre-computed ESM embeddings.
- Parses
rank*_confidence*.sdfoutputs, classifies confidence as High/Moderate/Low, ranks poses, and exports CSV summaries. - Tunes key parameters (
samples_per_complex,inference_steps, torsion temperature) using presets for high accuracy, fast screening, flexible or rigid ligands. - Explains downstream rescoring with GNINA, MM/GBSA, or FEP, and is explicit about scope limits (no affinity prediction, no protein–protein docking).
Who it's for
- Computational chemists and chemical biologists doing structure-based drug design and lead optimization.
- Biotech/pharma teams screening compound libraries against a target.
- Intermediate-to-advanced users comfortable with Conda, PyTorch/PyG, and a CUDA GPU.
Examples
- "Dock this aspirin SMILES into
protein.pdb" → generates thepython -m inference --protein_path ... --ligand_description ...call and interprets ranked poses. - "Screen 200 compounds against one target" → creates and validates the batch CSV, pre-computes ESM embeddings, runs batch inference, exports the top 20 poses.
- "All my poses score around -2 confidence, why?" → diagnoses likely causes (bulky ligand, flexible protein) and suggests more samples or ensemble docking.
· · · Install guide · · ·
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the skills/diffdock folder from the GitHub repo K-Dense-AI/scientific-agent-skills into my ~/.claude/skills/diffdock/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/K-Dense-AI/scientific-agent-skills.git && mkdir -p ~/.claude/skills && cp -r scientific-agent-skills/skills/diffdock ~/.claude/skills/⚠ This is a third-party skill. Check the source repository before installing.
- Install DiffDock itself first:
git clone https://github.com/gcorso/DiffDock.git, thencd DiffDock && conda env create --file environment.yml && conda activate diffdock(ordocker pull rbgcsail/diffdock). - Verify GPU access:
python -c "import torch; print(torch.cuda.is_available())"should print True for practical runtimes. - Clone the skill repo:
git clone https://github.com/K-Dense-AI/scientific-agent-skills.git - Copy the skill into place:
mkdir -p ~/.claude/skills && cp -r scientific-agent-skills/skills/diffdock ~/.claude/skills/ - Restart Claude Code and start it from inside your DiffDock checkout.
- Ask "check my DiffDock environment" so the skill runs
scripts/setup_check.pyand reports missing dependencies. - Then just say things like "dock this ligand to this protein" and the skill triggers automatically.
View source on GitHub ↗License: MIT