get_cancer_studies
Retrieve and paginate through cancer studies in cBioPortal, enabling users to explore and analyze genomic data with customizable sorting and filtering options.
Instructions
Get a list of cancer studies in cBioPortal with pagination support.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
direction | No | ASC | |
limit | No | ||
page_number | No | ||
page_size | No | ||
sort_by | No |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"direction": {
"default": "ASC",
"title": "Direction",
"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"
},
"sort_by": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Sort By"
}
},
"type": "object"
}