Skip to content

Commit de5cc45

Browse files
authored
[ODM-13059] Cell differential expression endpoint updates. (#540)
1 parent ccb7963 commit de5cc45

File tree

1 file changed

+13
-7
lines changed

1 file changed

+13
-7
lines changed

openapi/v1/schemas/cell/DEResponse.yaml

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ components:
2727
type: integer
2828
description: Number of cells expressing the gene in the control group.
2929
example: 8123
30-
caseAvgExpression:
30+
caseAvgEx:
3131
type: number
3232
format: double
3333
description: Mean expression level across case cells.
3434
example: 1.24
35-
controlAvgExpression:
35+
controlAvgEx:
3636
type: number
3737
format: double
3838
description: Mean expression level across control cells.
3939
example: 0.62
40-
expressionDifference:
40+
exDifference:
4141
type: number
4242
format: double
4343
description: Numerical difference between average expressions.
@@ -47,6 +47,11 @@ components:
4747
format: double
4848
description: Ratio of average expressions between case and control groups.
4949
example: 2.0
50+
log2FC:
51+
type: number
52+
format: double
53+
description: Logarithm with base 2 of the Fold change value.
54+
example: 1.4594316186372973
5055
mannWhitneyU:
5156
type: number
5257
format: double
@@ -56,15 +61,16 @@ components:
5661
type: number
5762
format: double
5863
description: The probability of observing results as extreme as (or more extreme than) those obtained, assuming that the null hypothesis is true.
59-
example: 0.95
64+
example: 0.5536169919657803
6065
required:
6166
- geneId
6267
- caseCellCount
6368
- controlCellCount
64-
- caseAvgExpression
65-
- controlAvgExpression
66-
- expressionDifference
69+
- caseAvgEx
70+
- controlAvgEx
71+
- exDifference
6772
- foldChange
73+
- log2FC
6874
- mannWhitneyU
6975
- pValue
7076
Pagination:

0 commit comments

Comments
 (0)