get_transcript
Retrieve detailed information about a specific transcript using its Ensembl ID. Query genetic data such as variant details, constraint scores, and population frequencies from the gnomAD database.
Instructions
Get information about a specific transcript
Input Schema
Name | Required | Description | Default |
---|---|---|---|
reference_genome | No | Reference genome | GRCh38 |
transcript_id | Yes | Ensembl transcript ID (e.g., ENST00000269305) |
Input Schema (JSON Schema)
{
"properties": {
"reference_genome": {
"default": "GRCh38",
"description": "Reference genome",
"type": "string"
},
"transcript_id": {
"description": "Ensembl transcript ID (e.g., ENST00000269305)",
"type": "string"
}
},
"required": [
"transcript_id"
],
"type": "object"
}