-
Notifications
You must be signed in to change notification settings - Fork 9
CreateGenePanel
LinZ-GYX edited this page Jul 17, 2025
·
2 revisions
Creates a new gene panel
https://analysis.geneyx.com/api/CreateGenePanel
https://fa.shanyint.com/api/CreateGenePanel
POST
JSON Structure
| Category | Parameter | Description | Required |
| Auth | ApiUserId | The API user Id | Yes |
| ApiUserKey | The API user key | Yes | |
| Name | ID of gene panel | Yes | |
| Description | Description of the panel (e.g. conditions where it can be used, of sample types etc.) | Yes | |
| Category | Yes | ||
| Symbols | List of genes in the panel | Yes | |
| GeneticModelNames | For which genetic model the panel will be available | Yes | |
| Disabled | Enable or disable the panel after creation | Yes |
{
"ApiUserId": "enter api user id",
"ApiUserKey": "enter api user key",
"Name": "string",
"Description": "string",
"Category": "string",
"Symbols": "string",
"GeneticModelNames": [
"string"
],
"Disabled": true
}
{
"Code": "success",
"Data": null,
"Info": null,
"MoreInfo": null,
"NeedEval": false
}