fetch_gene_info
Retrieve comprehensive details about a specific gene using its NCBI Gene ID, enabling accurate gene metadata and related information extraction for research and analysis.
Instructions
Fetch detailed information for a specific gene ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gene_id | Yes | NCBI Gene ID (e.g., '672' for BRCA1) |
Input Schema (JSON Schema)
{
"properties": {
"gene_id": {
"description": "NCBI Gene ID (e.g., '672' for BRCA1)",
"type": "string"
}
},
"required": [
"gene_id"
],
"type": "object"
}