compare_expression_profiles
Analyze and compare expression profiles of 2-10 proteins across tissues, brain regions, blood, or single-cell data using Human Protein Atlas information. Output in JSON or TSV format.
Instructions
Compare expression profiles between multiple proteins
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expressionType | No | Type of expression data to compare (default: tissue) | |
format | No | Output format (default: json) | |
genes | Yes | Array of gene symbols to compare (2-10) |
Input Schema (JSON Schema)
{
"properties": {
"expressionType": {
"description": "Type of expression data to compare (default: tissue)",
"enum": [
"tissue",
"brain",
"blood",
"single_cell"
],
"type": "string"
},
"format": {
"description": "Output format (default: json)",
"enum": [
"json",
"tsv"
],
"type": "string"
},
"genes": {
"description": "Array of gene symbols to compare (2-10)",
"items": {
"type": "string"
},
"maxItems": 10,
"minItems": 2,
"type": "array"
}
},
"required": [
"genes"
],
"type": "object"
}