get_structure
Predict protein structures using AlphaFold by entering a UniProt ID. Supports output in PDB, CIF, BCIF, or JSON formats for precise analysis.
Instructions
Get AlphaFold structure prediction for a specific UniProt ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format (default: json) | |
uniprotId | Yes | UniProt accession (e.g., P21359, Q8N726) |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"description": "Output format (default: json)",
"enum": [
"pdb",
"cif",
"bcif",
"json"
],
"type": "string"
},
"uniprotId": {
"description": "UniProt accession (e.g., P21359, Q8N726)",
"type": "string"
}
},
"required": [
"uniprotId"
],
"type": "object"
}