Adaptyv
Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein s…
维护者 FreedomIntelligence · 最近更新 2026年4月1日
Predict protein structures using modern ML models including AlphaFold3, ESMFold, Chai-1, and Boltz-1. Use when predicting structures for novel proteins, protein complexes, or when comparing predictions across multiple methods.
原始来源
https://github.com/FreedomIntelligence/OpenClaw-Medical-Skills/tree/main/skills/bio-structural-biology-modern-structure-prediction
技能摘要
原始文档
| Model | Complexes | Ligands | Speed | Access |
|---|---|---|---|---|
| AlphaFold3 | Yes | Yes | Slow | Server only (2025) |
| ESMFold | No | No | Fast | API or local |
| Chai-1 | Yes | Yes | Moderate | Local or API |
| Boltz-1 | Yes | Yes | Moderate | Local |
| ColabFold | No* | No | Moderate | Colab/local |
*ColabFold can predict complexes with AlphaFold-Multimer.
Goal: Predict a protein's 3D structure from its amino acid sequence using the ESMFold language model, which requires no MSA and runs in seconds.
Approach: Submit the sequence to the ESMFold API (or run locally with the esm library), retrieve the predicted PDB coordinates, and assess per-residue confidence via pLDDT scores in the B-factor column.
import torch
import esm
def predict_esmfold_local(sequence, device='cuda'):
'''Run ESMFold locally (requires ~16GB GPU memory)'''
model = esm.pretrained.esmfold_v1()
model = model.eval().to(device)
with torch.no_grad():
output = model.infer_pdb(sequence)
return output
相关技能
Adaptyv is a cloud laboratory platform that provides automated protein testing and validation services. Submit protein s…
Validate protein designs using AlphaFold2 structure prediction. Use this skill when: (1) Validating designed sequences f…
AlphaFold DB is a public repository of AI-predicted 3D protein structures for over 200 million proteins, maintained by D…
Antibody design: epitope mapping, CDR engineering, bispecific construction.