Therapeutic Protein Designer
AI-guided de novo protein design using RFdiffusion backbone generation, ProteinMPNN sequence optimization, and structure validation for therapeutic protein development.
KEY PRINCIPLES:
- Structure-first - Generate backbone geometry before sequence
- Target-guided - Design binders with target structure in mind
- Iterative validation - Predict structure to validate designs
- Developability-aware - Consider aggregation, immunogenicity, expression
- Evidence-graded - Grade designs by confidence metrics
- Actionable output - Provide sequences ready for experimental testing
- English-first queries - Always use English terms in tool calls
Therapeutic protein design starts with the target interaction. What binding surface do you need to cover? A small pocket = nanobody or peptide. A large flat surface = designed protein. Stability, immunogenicity, and manufacturability constrain the design space.
LOOK UP, DON'T GUESS
When uncertain about any scientific fact, SEARCH databases first rather than reasoning from memory. A database-verified answer is always more reliable than a guess.
COMPUTE, DON'T DESCRIBE
When analysis requires computation (statistics, data processing, scoring, enrichment), write and run Python code via Bash. Don't describe what you would do — execute it and report actual results. Use ToolUniverse tools to retrieve data, then Python (pandas, scipy, statsmodels, matplotlib) to analyze it.
When to Use
Apply when user asks to:
- Design a protein binder, therapeutic protein, or scaffold
- Optimize a protein sequence for function
- Design a de novo enzyme
- Generate protein variants for target binding
Workflow Overview
Phase 1: Target Characterization
Get structure (PDB, EMDB cryo-EM, AlphaFold), identify binding epitope
Phase 2: Backbone Generation (RFdiffusion)
Define constraints, generate >= 5 backbones, filter by geometry
Phase 3: Sequence Design (ProteinMPNN)
Design >= 8 sequences per backbone, sample with temperature control
Phase 4: Structure Validation (ESMFold/AlphaFold2)
Predict structure, compare to backbone, assess pLDDT/pTM
Phase 5: Developability Assessment
Aggregation, pI, expression prediction
Phase 6: Report Synthesis
Ranked candidates, FASTA, experimental recommendations
Critical Requirements
Report-First Approach (MANDATORY)
- Create
[TARGET]_protein_design_report.md first with section headers
- Progressively update as designs are generated
- Output
[TARGET]_designed_sequences.fasta and [TARGET]_top_candidates.csv
Design Documentation (MANDATORY)
Every design MUST include: Sequence, Length, Target, Method, and Quality Metrics (pLDDT, pTM, MPNN score, binding prediction).
NVIDIA NIM Tools
| Tool |
Purpose |
Key Parameter |
NvidiaNIM_rfdiffusion |
Backbone generation |
diffusion_steps (NOT num_steps) |
NvidiaNIM_proteinmpnn |
Sequence design |
pdb_string (NOT pdb) |
ESMFold_predict_structure |
Fast validation |
sequence (NOT seq) |
NvidiaNIM_alphafold2 |
High-accuracy validation |
sequence, algorithm |
NvidiaNIM_esm2_650m |
Sequence embeddings |
sequences, format |
Common Parameter Mistakes
| Tool |
Wrong |
Correct |
NvidiaNIM_rfdiffusion |
num_steps=50 |
diffusion_steps=50 |
NvidiaNIM_proteinmpnn |
pdb=content |
pdb_string=content |
ESMFold_predict_structure |
seq="MVLS..." |
sequence="MVLS..." |
NvidiaNIM_alphafold2 |
seq="MVLS..." |
sequence="MVLS..." |
NVIDIA NIM Requirements
- API Key:
NVIDIA_API_KEY environment variable required
- Rate limits: 40 RPM (1.5 second minimum between calls)
- AlphaFold2 may return 202 (polling required); RFdiffusion and ESMFold are synchronous
Supporting Tools
| Tool |
Purpose |
Key Parameters |
PDBe_get_uniprot_mappings |
Find PDB structures |
uniprot_id |
RCSBData_get_entry |
Download PDB file |
pdb_id |
alphafold_get_prediction |
Get AlphaFold DB structure |
accession |
emdb_search |
Search cryo-EM maps |
query |
emdb_get_entry |
Get entry details |
entry_id |
UniProt_get_entry_by_accession |
Get target sequence |
accession |
InterPro_get_protein_domains |
Get domains |
accession |
Evidence Grading
| Tier |
Criteria |
| T1 (best) |
pLDDT >85, pTM >0.8, low aggregation, neutral pI |
| T2 |
pLDDT >75, pTM >0.7, acceptable developability |
| T3 |
pLDDT >70, pTM >0.65, developability concerns |
| T4 |
Failed validation or major developability issues |
Completeness Checklist
Reference Files
- DESIGN_PROCEDURES.md - Phase-by-phase code examples, sampling parameters, fallback chains
- TOOLS_REFERENCE.md - Complete tool documentation with code examples
- EXAMPLES.md - Sample design workflows and outputs
- CHECKLIST.md - Detailed phase checklists and quality metrics
- design_templates.md - Report templates and output format examples
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1---2name: tooluniverse-protein-therapeutic-design3description: Design novel protein therapeutics (binders, enzymes, scaffolds) using AI-guided de novo design. Uses RFdiffusion for backbone generation, ProteinMPNN for sequence design, ESMFold/AlphaFold2 for validation. Use when asked to design protein binders, therapeutic proteins, or engineer protein function. Use when this capability is needed.4---56# Therapeutic Protein Designer78AI-guided de novo protein design using RFdiffusion backbone generation, ProteinMPNN sequence optimization, and structure validation for therapeutic protein development.910**KEY PRINCIPLES**:111. **Structure-first** - Generate backbone geometry before sequence122. **Target-guided** - Design binders with target structure in mind133. **Iterative validation** - Predict structure to validate designs144. **Developability-aware** - Consider aggregation, immunogenicity, expression155. **Evidence-graded** - Grade designs by confidence metrics166. **Actionable output** - Provide sequences ready for experimental testing177. **English-first queries** - Always use English terms in tool calls1819Therapeutic protein design starts with the target interaction. What binding surface do you need to cover? A small pocket = nanobody or peptide. A large flat surface = designed protein. Stability, immunogenicity, and manufacturability constrain the design space.2021## LOOK UP, DON'T GUESS22When uncertain about any scientific fact, SEARCH databases first rather than reasoning from memory. A database-verified answer is always more reliable than a guess.2324---2526## COMPUTE, DON'T DESCRIBE27When analysis requires computation (statistics, data processing, scoring, enrichment), write and run Python code via Bash. Don't describe what you would do — execute it and report actual results. Use ToolUniverse tools to retrieve data, then Python (pandas, scipy, statsmodels, matplotlib) to analyze it.2829## When to Use3031Apply when user asks to:32- Design a protein binder, therapeutic protein, or scaffold33- Optimize a protein sequence for function34- Design a de novo enzyme35- Generate protein variants for target binding3637---3839## Workflow Overview4041```42Phase 1: Target Characterization43 Get structure (PDB, EMDB cryo-EM, AlphaFold), identify binding epitope4445Phase 2: Backbone Generation (RFdiffusion)46 Define constraints, generate >= 5 backbones, filter by geometry4748Phase 3: Sequence Design (ProteinMPNN)49 Design >= 8 sequences per backbone, sample with temperature control5051Phase 4: Structure Validation (ESMFold/AlphaFold2)52 Predict structure, compare to backbone, assess pLDDT/pTM5354Phase 5: Developability Assessment55 Aggregation, pI, expression prediction5657Phase 6: Report Synthesis58 Ranked candidates, FASTA, experimental recommendations59```6061---6263## Critical Requirements6465### Report-First Approach (MANDATORY)661. Create `[TARGET]_protein_design_report.md` first with section headers672. Progressively update as designs are generated683. Output `[TARGET]_designed_sequences.fasta` and `[TARGET]_top_candidates.csv`6970### Design Documentation (MANDATORY)71Every design MUST include: Sequence, Length, Target, Method, and Quality Metrics (pLDDT, pTM, MPNN score, binding prediction).7273---7475## NVIDIA NIM Tools7677| Tool | Purpose | Key Parameter |78|------|---------|---------------|79| `NvidiaNIM_rfdiffusion` | Backbone generation | `diffusion_steps` (NOT `num_steps`) |80| `NvidiaNIM_proteinmpnn` | Sequence design | `pdb_string` (NOT `pdb`) |81| `ESMFold_predict_structure` | Fast validation | `sequence` (NOT `seq`) |82| `NvidiaNIM_alphafold2` | High-accuracy validation | `sequence`, `algorithm` |83| `NvidiaNIM_esm2_650m` | Sequence embeddings | `sequences`, `format` |8485### Common Parameter Mistakes8687| Tool | Wrong | Correct |88|------|-------|---------|89| `NvidiaNIM_rfdiffusion` | `num_steps=50` | `diffusion_steps=50` |90| `NvidiaNIM_proteinmpnn` | `pdb=content` | `pdb_string=content` |91| `ESMFold_predict_structure` | `seq="MVLS..."` | `sequence="MVLS..."` |92| `NvidiaNIM_alphafold2` | `seq="MVLS..."` | `sequence="MVLS..."` |9394### NVIDIA NIM Requirements95- **API Key**: `NVIDIA_API_KEY` environment variable required96- **Rate limits**: 40 RPM (1.5 second minimum between calls)97- AlphaFold2 may return 202 (polling required); RFdiffusion and ESMFold are synchronous9899---100101## Supporting Tools102103| Tool | Purpose | Key Parameters |104|------|---------|----------------|105| `PDBe_get_uniprot_mappings` | Find PDB structures | `uniprot_id` |106| `RCSBData_get_entry` | Download PDB file | `pdb_id` |107| `alphafold_get_prediction` | Get AlphaFold DB structure | `accession` |108| `emdb_search` | Search cryo-EM maps | `query` |109| `emdb_get_entry` | Get entry details | `entry_id` |110| `UniProt_get_entry_by_accession` | Get target sequence | `accession` |111| `InterPro_get_protein_domains` | Get domains | `accession` |112113---114115## Evidence Grading116117| Tier | Criteria |118|------|----------|119| T1 (best) | pLDDT >85, pTM >0.8, low aggregation, neutral pI |120| T2 | pLDDT >75, pTM >0.7, acceptable developability |121| T3 | pLDDT >70, pTM >0.65, developability concerns |122| T4 | Failed validation or major developability issues |123124---125126## Completeness Checklist127128- [ ] Target structure obtained (PDB or predicted)129- [ ] Binding epitope identified130- [ ] >= 5 backbones generated, top 3-5 selected131- [ ] >= 8 sequences per backbone, MPNN scores reported132- [ ] All sequences validated (ESMFold), pLDDT/pTM reported, >= 3 passing133- [ ] Developability assessed (aggregation, pI, expression)134- [ ] Ranked candidate list, FASTA file, experimental recommendations135136---137138## Reference Files139140- **DESIGN_PROCEDURES.md** - Phase-by-phase code examples, sampling parameters, fallback chains141- **TOOLS_REFERENCE.md** - Complete tool documentation with code examples142- **EXAMPLES.md** - Sample design workflows and outputs143- **CHECKLIST.md** - Detailed phase checklists and quality metrics144- **design_templates.md** - Report templates and output format examples145146---147> Converted and distributed by [TomeVault](https://tomevault.io/claim/mims-harvard) — claim your Tome and manage your conversions.148<!-- tomevault:4.0:skill_md:2026-04-11 -->