get_brain_expression
Retrieve protein expression data across brain regions using a specified gene symbol. Output available in JSON or TSV format for analysis and research purposes.
Instructions
Get brain region expression data for a protein
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | Output format (default: json) | |
gene | Yes | Gene symbol |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"description": "Output format (default: json)",
"enum": [
"json",
"tsv"
],
"type": "string"
},
"gene": {
"description": "Gene symbol",
"type": "string"
}
},
"required": [
"gene"
],
"type": "object"
}