← ClaudeAtlas

boltz-structure-predictionlisted

Boltz-1 / Boltz-2 structure prediction for proteins, complexes, and ligand-aware validation. Use this skill when: (1) Predicting protein complex structures, (2) Validating designed binders, (3) Need open-source alternative to AF2, (4) Predicting protein-ligand complexes, (5) Using local GPU resources. For QC thresholds, use protein-design-qc. For AlphaFold2 prediction, use alphafold2-multimer. For Chai prediction, use chai1-structure-prediction.
BioTender-max/awesome-bio-agent-skills · ★ 58 · AI & Automation · score 80
Install: claude install-skill BioTender-max/awesome-bio-agent-skills
# Boltz-1 / Boltz-2 Structure Prediction **Plain-language role**: Use Boltz when you want an open-source structure predictor for protein or protein-ligand validation. ## Prerequisites | Requirement | Minimum | Recommended | |-------------|---------|-------------| | Python | 3.10+ | 3.11 | | CUDA | 12.0+ | 12.1+ | | GPU VRAM | 24GB | 48GB (L40S) | | RAM | 32GB | 64GB | ## How to run > **First time?** See [Installation Guide](../../docs/installation.md) to set up Modal and biomodals. ### Option 1: Modal ```bash cd biomodals modal run modal_boltz.py \ --input-faa complex.fasta \ --out-dir predictions/ ``` **GPU**: L40S (48GB) | **Timeout**: 1800s default ### Option 2: Local installation ```bash pip install boltz-structure-prediction boltz-structure-prediction predict \ --fasta complex.fasta \ --output predictions/ ``` ## Key parameters | Parameter | Default | Range | Description | |-----------|---------|-------|-------------| | `--recycling_steps` | 3 | 1-10 | Recycling iterations | | `--sampling_steps` | 200 | 50-500 | Diffusion steps | | `--use_msa_server` | true | bool | Use MSA server | ## FASTA Format ``` >protein_A MKTAYIAKQRQISFVK... >protein_B MVLSPADKTNVKAAWG... ``` ## Output format ``` predictions/ ├── model_0.cif # Best model (CIF format) ├── confidence.json # pLDDT, pTM, ipTM └── pae.npy # PAE matrix ``` **Note**: Boltz outputs CIF format. Convert to PDB if needed: ```python from Bio.PDB import MMCIFParser, PDBIO parser = MMCI