get_gene
Retrieve comprehensive gene details, including constraint scores, using Ensembl gene ID or gene symbol. Supports GRCh37 and GRCh38 reference genomes.
Instructions
Get detailed information about a gene including constraint scores
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gene_id | No | Ensembl gene ID (e.g., ENSG00000141510) | |
gene_symbol | No | Gene symbol (e.g., TP53) | |
reference_genome | No | Reference genome (GRCh37 or GRCh38) | GRCh38 |
Input Schema (JSON Schema)
{
"properties": {
"gene_id": {
"description": "Ensembl gene ID (e.g., ENSG00000141510)",
"type": "string"
},
"gene_symbol": {
"description": "Gene symbol (e.g., TP53)",
"type": "string"
},
"reference_genome": {
"default": "GRCh38",
"description": "Reference genome (GRCh37 or GRCh38)",
"type": "string"
}
},
"type": "object"
}