get_assembly_info
Retrieve detailed genome assembly data and statistics for specified species, including optional chromosome banding patterns, using the Ensembl REST API.
Instructions
Get genome assembly information and statistics
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bands | No | Include chromosome banding patterns (default: false) | |
| species | No | Species name (default: homo_sapiens) |
Input Schema (JSON Schema)
{
"properties": {
"bands": {
"description": "Include chromosome banding patterns (default: false)",
"type": "boolean"
},
"species": {
"description": "Species name (default: homo_sapiens)",
"type": "string"
}
},
"required": [],
"type": "object"
}