Boltz Structure Prediction
Predict protein complex and protein–ligand structures with open-source Boltz-1/Boltz-2 and validate designed binders.
Data & AnalyticsAdvanced★ 178⑂ 32AI score 8/10Last updated: Jul 1, 2026
What it does
- Runs Boltz-1/Boltz-2, an open-weights biomolecular structure predictor, for protein–protein complexes, protein–ligand complexes and binder validation.
- Gives two execution paths: Modal cloud GPU (
modal run modal_boltz.py) or a local install (pip install boltz→boltz predict). - Documents key parameters (
--recycling_steps,--sampling_steps,--use_msa_server) with defaults and safe ranges. - Explains the output layout (CIF model, confidence.json, PAE matrix), pass thresholds (pTM > 0.7, ipTM > 0.5, pLDDT > 0.7) and a Biopython snippet to convert CIF → PDB.
- Includes an error table for CUDA OOM, missing
iptm(single-chain FASTA), missing weights and non-standard residues. - Adds a decision tree for choosing Boltz vs Chai vs ColabFold vs ESMFold, plus runtime/cost estimates per campaign size.
Who it's for
- Protein designers who need structural validation of de novo binders
- Teams that want open weights instead of AF2's licensing constraints
- Computational biology engineers with a 24GB+ GPU or serverless GPU credits (Modal)
Examples
- "Predict the target–binder complexes in complex.fasta and drop anything with ipTM < 0.5."
- "How long and how much to fold 500 complexes on Modal?" → ~2–3 hours, roughly $35 from the performance table.
- "I hit CUDA out of memory" → switch to MSA-free mode, reduce sampling_steps, or move to an A100-80GB.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/BioTender-max/awesome-bio-agent-skills/HEAD/skills/adaptyv/boltz/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
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/adaptyv/boltz folder from the GitHub repo BioTender-max/awesome-bio-agent-skills into my ~/.claude/skills/boltz/. When it's done, tell me in one line what this skill can do.
Install with a command instead
git clone https://github.com/BioTender-max/awesome-bio-agent-skills.git /tmp/abas && mkdir -p ~/.claude/skills/boltz && cp -r /tmp/abas/skills/adaptyv/boltz/* ~/.claude/skills/boltz/⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal and clone the repo:
git clone https://github.com/BioTender-max/awesome-bio-agent-skills.git - Create the skill folder:
mkdir -p ~/.claude/skills/boltz - Copy the skill files:
cp -r awesome-bio-agent-skills/skills/adaptyv/boltz/* ~/.claude/skills/boltz/ - Restart Claude Code and ask something like "use boltz to predict this complex" to confirm the skill loads.
- Prepare the runtime: Python 3.10+, CUDA 12+, 24GB+ VRAM; run
pip install boltzthenboltz downloadto fetch model weights. - For cloud runs, create a Modal account, run
pip install modal && modal setup, then usemodal_boltz.pyfrom the biomodals repo. - Make sure your FASTA has two or more chains (>protein_A, >protein_B) so interface confidence (ipTM) is reported.
View source on GitHub ↗License: NOASSERTION