← ClaudeAtlas

campaign-managerlisted

Goal-oriented binder design campaign planning and health assessment. Use this skill when: (1) Planning a complete binder design campaign, (2) Converting high-level goals into runnable pipelines, (3) Assessing campaign health and pass rates, (4) Diagnosing why designs are failing QC, (5) Estimating time, cost, and expected yields, (6) Selecting between design tools for a specific target. This skill orchestrates the other protein design tools. For individual tool parameters, use the specific tool skills.
BioTender-max/awesome-bio-agent-skills · ★ 58 · AI & Automation · score 80
Install: claude install-skill BioTender-max/awesome-bio-agent-skills
# Campaign Manager ## Goal-oriented design ### From goal to pipeline When user says: "I need 10 good binders for EGFR" **Campaign Planning:** ``` Goal: 10 high-quality binders for EGFR ├── Achievable: Yes (standard target) ├── Recommended pipeline: rfdiffusion → proteinmpnn → colabfold → protein-qc ├── Estimated designs needed: 500 backbones (to get ~50 passing QC) ├── Estimated time: 8-12 hours total ├── Estimated cost: ~$60 (Modal GPU compute) └── Expected yield: ├── After backbone (500): 500 structures ├── After sequence (×8): 4,000 sequences ├── After validation: 4,000 predictions ├── After QC (~10-15%): 400-600 candidates └── After clustering: 10-20 diverse final designs ``` --- ## Complete pipeline generator ### Standard miniprotein binder campaign ```bash # Step 1: Fetch and prepare target (5 min) curl -o target.pdb "https://files.rcsb.org/download/{PDB_ID}.pdb" # Trim to binding region if needed # Step 2: Generate backbones (2-3h, ~$15) modal run modal_rfdiffusion.py \ --pdb target.pdb \ --contigs "A1-150/0 70-100" \ --hotspot "A45,A67,A89" \ --num-designs 500 # Checkpoint: ls output/*.pdb | wc -l # Should be 500 # Step 3: Design sequences (1-2h, ~$10) for f in output/*.pdb; do modal run modal_proteinmpnn.py \ --pdb-path "$f" \ --num-seq-per-target 8 \ --sampling-temp 0.1 done # Checkpoint: grep -c "^>" output/seqs/*.fa # Should be ~4000 # Step 4: Quick ESM2 filter (30 min, ~$5, optional) modal run modal_esm.py