-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(agora): change boxplot to handle summaries without any points, ad…
…d metabolomics types (AG-1653, AG-1654) (#2997)
- Loading branch information
1 parent
797ac54
commit 764bfcb
Showing
17 changed files
with
194 additions
and
51 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
libs/agora/api-client-angular/src/lib/model/metabolomics.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/** | ||
* Agora REST API | ||
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | ||
* | ||
* The version of the OpenAPI document: 1.0.0 | ||
* | ||
* | ||
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). | ||
* https://openapi-generator.tech | ||
* Do not edit the class manually. | ||
*/ | ||
|
||
/** | ||
* Metabolomics | ||
*/ | ||
export interface Metabolomics { | ||
_id: string; | ||
associated_gene_name: string; | ||
ensembl_gene_id: string; | ||
metabolite_id: string; | ||
metabolite_full_name: string; | ||
association_p: number; | ||
gene_wide_p_threshold_1kgp: number; | ||
n_per_group: Array<number>; | ||
boxplot_group_names: Array<string>; | ||
ad_diagnosis_p_value: Array<number>; | ||
transposed_boxplot_stats: Array<Array<number>>; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
50 changes: 50 additions & 0 deletions
50
libs/agora/api-description/src/components/schemas/Metabolomics.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
type: object | ||
description: Metabolomics | ||
properties: | ||
_id: | ||
type: string | ||
associated_gene_name: | ||
type: string | ||
example: 'VGF' | ||
ensembl_gene_id: | ||
type: string | ||
metabolite_id: | ||
type: string | ||
metabolite_full_name: | ||
type: string | ||
association_p: | ||
type: number | ||
gene_wide_p_threshold_1kgp: | ||
type: number | ||
n_per_group: | ||
type: array | ||
items: | ||
type: number | ||
boxplot_group_names: | ||
type: array | ||
items: | ||
type: string | ||
ad_diagnosis_p_value: | ||
type: array | ||
items: | ||
type: number | ||
transposed_boxplot_stats: | ||
type: array | ||
items: | ||
type: array | ||
items: | ||
type: number | ||
minItems: 5 | ||
maxItems: 5 | ||
required: | ||
- _id | ||
- associated_gene_name | ||
- ensembl_gene_id | ||
- metabolite_id | ||
- metabolite_full_name | ||
- association_p | ||
- gene_wide_p_threshold_1kgp | ||
- n_per_group | ||
- boxplot_group_names | ||
- ad_diagnosis_p_value | ||
- transposed_boxplot_stats |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.