get_mutations_in_gene
Retrieve and paginate mutations in a specific gene for a study and sample list, enabling targeted cancer genomics analysis with customizable sorting and limits.
Instructions
Get mutations in a specific gene for a given study and sample list, with pagination support.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
direction | No | ASC | |
gene_id | Yes | ||
limit | No | ||
page_number | No | ||
page_size | No | ||
sample_list_id | Yes | ||
sort_by | No | ||
study_id | Yes |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"direction": {
"default": "ASC",
"title": "Direction",
"type": "string"
},
"gene_id": {
"title": "Gene Id",
"type": "string"
},
"limit": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"default": null,
"title": "Limit"
},
"page_number": {
"default": 0,
"title": "Page Number",
"type": "integer"
},
"page_size": {
"default": 50,
"title": "Page Size",
"type": "integer"
},
"sample_list_id": {
"title": "Sample List Id",
"type": "string"
},
"sort_by": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sort By"
},
"study_id": {
"title": "Study Id",
"type": "string"
}
},
"required": [
"gene_id",
"study_id",
"sample_list_id"
],
"type": "object"
}