get_blood_expression
Retrieve blood cell expression data for a specific protein by entering a gene symbol. Output formats include JSON or TSV, with JSON as the default.
Instructions
Get blood cell 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"
}