find_similar_structures
Identify protein structures in AlphaFold similar to a reference UniProt ID. Filter results by organism to refine matches for precise structural analysis.
Instructions
Find AlphaFold structures similar to a given protein
Input Schema
Name | Required | Description | Default |
---|---|---|---|
organism | No | Filter by organism (optional) | |
uniprotId | Yes | Reference UniProt accession |
Input Schema (JSON Schema)
{
"properties": {
"organism": {
"description": "Filter by organism (optional)",
"type": "string"
},
"uniprotId": {
"description": "Reference UniProt accession",
"type": "string"
}
},
"required": [
"uniprotId"
],
"type": "object"
}