download_structure
Retrieve AlphaFold protein structure files in PDB, CIF, or BCIF formats by providing a UniProt accession ID to streamline structural biology research.
Instructions
Download AlphaFold structure file in specified format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | File format (default: pdb) | |
uniprotId | Yes | UniProt accession |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"description": "File format (default: pdb)",
"enum": [
"pdb",
"cif",
"bcif"
],
"type": "string"
},
"uniprotId": {
"description": "UniProt accession",
"type": "string"
}
},
"required": [
"uniprotId"
],
"type": "object"
}