get_protein_homologs
Identify homologous proteins across species using a UniProt accession number and target organism. Specify the number of results to retrieve for comparative analysis.
Instructions
Find homologous proteins across different species
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accession | Yes | UniProt accession number | |
organism | No | Target organism to find homologs in | |
size | No | Number of results to return (1-100, default: 25) |
Input Schema (JSON Schema)
{
"properties": {
"accession": {
"description": "UniProt accession number",
"type": "string"
},
"organism": {
"description": "Target organism to find homologs in",
"type": "string"
},
"size": {
"description": "Number of results to return (1-100, default: 25)",
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"required": [
"accession"
],
"type": "object"
}