biotender-max/structural-biology
Structure retrieval, confidence-aware AlphaFold DB usage, coordinate download, PAE and pLDDT interpretation, and structure-guided biological annotation.
npx skills add https://github.com/BioTender-max/awesome-bio-agent-skills --skill structural-biology
Reference examples assume:
biopython 1.84+py3Dmol or PyMOLVerify before use:
python -c "import Bio; print(Bio.__version__)"Use this skill when the task is:
results/structures/AF-<accession>.cifresults/structures/AF-<accession>.pdbresults/confidence/AF-<accession>-confidence.jsonresults/confidence/AF-<accession>-pae.jsonfigures/AF-<accession>-pae.pngfrom Bio.PDB import alphafold_db
prediction = next(alphafold_db.get_predictions("P00520"))
cif_path = alphafold_db.download_cif_for(prediction, directory="results/structures")
print(cif_path)
| pLDDT | Interpretation |
|---|---|
| > 90 | very high confidence |
| 70-90 | good backbone confidence |
| 50-70 | low confidence |
| < 50 | likely disorder or unreliable local structure |
| PAE | Interpretation |
|---|---|
| < 5 Å | confident relative positioning |
| 5-15 Å | moderate uncertainty |
| > 15 Å | domain orientation may be unreliable |
Download:
mmCIF or PDBDo not map mutations or infer interfaces from low-confidence regions without saying so.
Map domains, active sites, mutations, motifs, or interfaces onto the structure.
Save coordinates, confidence files, and a PAE heatmap or equivalent summary.
results/
├── structures/
│ ├── AF-P00520-F1-model_v4.cif
│ └── AF-P00520-F1-model_v4.pdb
└── confidence/
├── AF-P00520-F1-confidence_v4.json
└── AF-P00520-F1-predicted_aligned_error_v4.json
figures/
└── AF-P00520-F1-pae.png
alphafold-databaseTake biotender-max/structural-biology from the repository into ~/.claude/skills for personal
use, or into .claude/skills inside a project.
The agent identifies a skill by the name field in its header. Two skills with the
same name cannot sit side by side — one of them will be ignored.