Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Deployment fixes #13

Merged
merged 2 commits into from
Nov 24, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ certifi==2024.8.30
chardet==5.2.0
click==8.1.3
clickclick==1.2.2
connexion==3.1.0
connexion[flask]==3.1.0
flask-cors==4.0.0
flask-marshmallow==1.2.1
flask-sqlalchemy==3.1.1
Expand Down
48 changes: 24 additions & 24 deletions swagger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2582,7 +2582,7 @@ paths:
items:
properties:
comparison_ID:
type: int
type: integer
description: Id of the selected comparison.
condition_1:
type: string
Expand Down Expand Up @@ -2616,10 +2616,10 @@ paths:
type: string
description: Abbreviation of the disease.
total_number_samples:
type: int
type: integer
description: Number of samples in the dataset.
version:
type: int
type: integer
description: SPONGEdb version that the dataset belongs to.
dataset_2:
type: object
Expand All @@ -2644,10 +2644,10 @@ paths:
type: string
description: Abbreviation of the disease.
total_number_samples:
type: int
type: integer
description: Number of samples in the dataset.
version:
type: int
type: integer
description: SPONGEdb version that the dataset belongs to.

/gseaSets:
Expand Down Expand Up @@ -2835,22 +2835,22 @@ paths:
items:
properties:
es:
type: float
type: number
description: Enrichment Score.
nes:
type: float
type: number
description: Normalised Enrichment Score.
pvalue:
type: float
type: number
description: P-Value of GSEA result.
fdr:
type: float
type: number
description: P-Value after false discovery rate control
fwerp:
type: float
type: number
description: P-Value after family wise error rate control
gene_percent:
type: float
type: number
description: Gene Percent.
tag_percent:
type: string
Expand All @@ -2875,7 +2875,7 @@ paths:
type: integer
description: Id of the score within the gsea result, creates an order for the scores.
score:
type: float
type: number
description: Value of the score.

/gseaPlot:
Expand Down Expand Up @@ -3022,22 +3022,22 @@ paths:
type: string
description: Gene Symbol.
baseMean:
type: float
type: number
description: Differential Expression Base Mean.
log2FoldChange:
type: float
type: number
description: Log2 Fold Change between gene expressions.
pvalue:
type: float
type: number
description: P-Value for change between gene expressions.
padj:
type: float
type: number
description: P-Value adjusted for multiple testing problem.
stat:
type: float
type: number
description: Differential Expression Statistic.
lfcSE:
type: float
type: number
description: Standard Error of Log Fold Change.

/differentialExpressionTranscript:
Expand Down Expand Up @@ -3110,20 +3110,20 @@ paths:
type: string
description: ENST number of transcript.
baseMean:
type: float
type: number
description: Differential Expression Base Mean.
log2FoldChange:
type: float
type: number
description: Log2 Fold Change between gene expressions.
pvalue:
type: float
type: number
description: P-Value for change between gene expressions.
padj:
type: float
type: number
description: P-Value adjusted for multiple testing problem.
stat:
type: float
type: number
description: Differential Expression Statistic.
lfcSE:
type: float
type: number
description: Standard Error of Log Fold Change.
Loading