get_disease_targets_summary
Retrieve a comprehensive summary of all targets linked to a specific disease using its EFO ID, with options to filter by association score and limit the number of results.
Instructions
Get overview of all targets associated with a disease
Input Schema
Name | Required | Description | Default |
---|---|---|---|
diseaseId | Yes | Disease EFO ID | |
minScore | No | Minimum association score (0-1) | |
size | No | Number of targets to return (1-500, default: 50) |
Input Schema (JSON Schema)
{
"properties": {
"diseaseId": {
"description": "Disease EFO ID",
"type": "string"
},
"minScore": {
"description": "Minimum association score (0-1)",
"maximum": 1,
"minimum": 0,
"type": "number"
},
"size": {
"description": "Number of targets to return (1-500, default: 50)",
"maximum": 500,
"minimum": 1,
"type": "number"
}
},
"required": [
"diseaseId"
],
"type": "object"
}