get_protein_info
Retrieve detailed protein information from the Human Protein Atlas by entering a gene symbol. Obtain data on expression, subcellular localization, and pathology in multiple output formats.
Instructions
Get detailed information for a specific protein by gene symbol
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format (default: json) | |
gene | Yes | Gene symbol (e.g., BRCA1, TP53) |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"description": "Output format (default: json)",
"enum": [
"json",
"tsv",
"xml",
"trig"
],
"type": "string"
},
"gene": {
"description": "Gene symbol (e.g., BRCA1, TP53)",
"type": "string"
}
},
"required": [
"gene"
],
"type": "object"
}