get_molecular_profiles
Retrieve molecular profiles for a specific cancer study using pagination, sorting, and customizable parameters to analyze genomic data efficiently.
Instructions
Get a list of molecular profiles available for a specific cancer study with pagination support.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
direction | No | ASC | |
limit | No | ||
page_number | No | ||
page_size | No | ||
sort_by | No | ||
study_id | Yes |
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"
},
"study_id": {
"title": "Study Id",
"type": "string"
}
},
"required": [
"study_id"
],
"type": "object"
}