get_variant_consequences
Analyze variant effects on genes and transcripts using variant IDs or HGVS notation, with species-specific insights for genomic research.
Instructions
Predict consequences of variants on genes and transcripts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
species | No | Species name (default: homo_sapiens) | |
variants | Yes | Variant IDs or HGVS notation |
Input Schema (JSON Schema)
{
"properties": {
"species": {
"description": "Species name (default: homo_sapiens)",
"type": "string"
},
"variants": {
"description": "Variant IDs or HGVS notation",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"variants"
],
"type": "object"
}