con un clic
alphafold
AlphaFold DB for predicted protein structures and pLDDT confidence scores
Menú
AlphaFold DB for predicted protein structures and pLDDT confidence scores
Shared operational contract for all MedSci agents: sequential execution, planning phase, retry limits, evidence standards.
Isolated exploratory code execution with medsci-sandbox tools. Use when analysis requires custom code beyond existing domain MCP tools.
Molecular biology toolkit. Use for FASTA parsing, sequence analysis, and translation.
ChEMBL database access for bioactivity data and target search
Datamol for molecular manipulation, SMILES processing, and cheminformatics
Molecular ML with DeepChem - featurizers, models, and molecular property prediction
| name | alphafold |
| description | AlphaFold DB for predicted protein structures and pLDDT confidence scores |
AlphaFold DB (by DeepMind and EMBL-EBI) provides predicted 3D structures for over 200M proteins. Structures are predicted by AlphaFold2 and stored with per-residue confidence scores (pLDDT).
import requests
# Fetch prediction for a UniProt accession
uniprot_id = "P04637"
r = requests.get(f"https://alphafold.ebi.ac.uk/api/prediction/{uniprot_id}")
prediction = r.json()[0]
# Get model URLs
cif_url = prediction["cifUrl"] # mmCIF format
pdb_url = prediction["pdbUrl"] # PDB format
pae_url = prediction["paeImageUrl"] # PAE plot image
# Direct download
pdb_url = f"https://alphafold.ebi.ac.uk/files/AF-{uniprot_id}-F1-model_v4.pdb"
cif_url = f"https://alphafold.ebi.ac.uk/files/AF-{uniprot_id}-F1-model_v4.cif"
pae_url = f"https://alphafold.ebi.ac.uk/files/AF-{uniprot_id}-F1-predicted_aligned_error_v4.json"