Skip to content

Commit

Permalink
add new endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
Djokovic0311 committed Aug 30, 2023
1 parent 494bafa commit 364812a
Show file tree
Hide file tree
Showing 22 changed files with 4,103 additions and 29 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,10 @@
"name": "Gene Sets",
"description": " "
},
{
"name": "Generic Assay Enrichment Data",
"description": " "
},
{
"name": "Mutation Spectrums",
"description": " "
Expand Down Expand Up @@ -1289,6 +1293,110 @@
}
}
},
"/generic-assay-binary-enrichments/fetch": {
"post": {
"tags": [
"Generic Assay Enrichment Data"
],
"summary": "Fetch generic assay binary data enrichments in a molecular profile",
"operationId": "fetchGenericAssayBinaryDataEnrichmentInMultipleMolecularProfilesUsingPOST",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"name": "enrichmentType",
"in": "query",
"description": "Type of the enrichment e.g. SAMPLE or PATIENT",
"required": false,
"type": "string",
"default": "SAMPLE",
"enum": [
"PATIENT",
"SAMPLE"
]
},
{
"in": "body",
"name": "groups",
"description": "List of groups containing sample and molecular profile identifiers",
"required": true,
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/MolecularProfileCasesGroupFilter"
}
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/GenericAssayBinaryEnrichment"
}
}
}
}
}
},
"/generic-assay-categorical-enrichments/fetch": {
"post": {
"tags": [
"Generic Assay Enrichment Data"
],
"summary": "Fetch generic assay categorical data enrichments in a molecular profile",
"operationId": "fetchGenericAssayCategoricalDataEnrichmentInMultipleMolecularProfilesUsingPOST",
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"parameters": [
{
"name": "enrichmentType",
"in": "query",
"description": "Type of the enrichment e.g. SAMPLE or PATIENT",
"required": false,
"type": "string",
"default": "SAMPLE",
"enum": [
"PATIENT",
"SAMPLE"
]
},
{
"in": "body",
"name": "groups",
"description": "List of groups containing sample and molecular profile identifiers",
"required": true,
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/MolecularProfileCasesGroupFilter"
}
}
}
],
"responses": {
"200": {
"description": "OK",
"schema": {
"type": "array",
"items": {
"$ref": "#/definitions/GenericAssayCategoricalEnrichment"
}
}
}
}
}
},
"/generic-assay-data-bin-counts/fetch": {
"post": {
"tags": [
Expand Down Expand Up @@ -4445,6 +4553,111 @@
},
"title": "GeneFilterQuery"
},
"GenericAssayBinaryEnrichment": {
"type": "object",
"required": [
"counts",
"genericEntityMetaProperties",
"groupsStatistics",
"name",
"pValue",
"qValue",
"stableId"
],
"properties": {
"counts": {
"type": "array",
"items": {
"$ref": "#/definitions/GenericAssayCountSummary"
}
},
"genericEntityMetaProperties": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"groupsStatistics": {
"type": "array",
"items": {
"$ref": "#/definitions/GroupStatistics"
}
},
"name": {
"type": "string"
},
"pValue": {
"type": "number"
},
"qValue": {
"type": "number"
},
"stableId": {
"type": "string"
}
},
"title": "GenericAssayBinaryEnrichment"
},
"GenericAssayCategoricalEnrichment": {
"type": "object",
"required": [
"genericEntityMetaProperties",
"groupsStatistics",
"name",
"pValue",
"qValue",
"stableId"
],
"properties": {
"genericEntityMetaProperties": {
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"groupsStatistics": {
"type": "array",
"items": {
"$ref": "#/definitions/GroupStatistics"
}
},
"name": {
"type": "string"
},
"pValue": {
"type": "number"
},
"qValue": {
"type": "number"
},
"stableId": {
"type": "string"
}
},
"title": "GenericAssayCategoricalEnrichment"
},
"GenericAssayCountSummary": {
"type": "object",
"required": [
"count",
"name",
"totalCount"
],
"properties": {
"count": {
"type": "integer",
"format": "int32"
},
"name": {
"type": "string"
},
"totalCount": {
"type": "integer",
"format": "int32"
}
},
"title": "GenericAssayCountSummary"
},
"GenericAssayDataBin": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -4592,6 +4805,7 @@
"groupsStatistics",
"name",
"pValue",
"qValue",
"stableId"
],
"properties": {
Expand All @@ -4613,6 +4827,9 @@
"pValue": {
"type": "number"
},
"qValue": {
"type": "number"
},
"stableId": {
"type": "string"
}
Expand Down
Loading

0 comments on commit 364812a

Please sign in to comment.