Skip to content

Commit

Permalink
added normalized endpoint type
Browse files Browse the repository at this point in the history
  • Loading branch information
vedina committed Jul 15, 2024
1 parent 79eb8fe commit 524ac0b
Showing 1 changed file with 54 additions and 2 deletions.
56 changes: 54 additions & 2 deletions src/SurveyComp/json.js
Original file line number Diff line number Diff line change
Expand Up @@ -879,6 +879,10 @@ export const json = {
value: "AGGREGATED",
text: "Aggregated",
},
{
value: "NORMALIZED",
text: "Normalized",
},
{
value: "",
text: "Other",
Expand Down Expand Up @@ -1008,7 +1012,11 @@ export const json = {
{
value: "MAX",
text: "Max",
},
},
{
value: "MIN",
text: "Min",
},
{
value: "D25",
text: "D25",
Expand All @@ -1018,7 +1026,51 @@ export const json = {
text: "D90",
},
{
value: "",
value: "AGGREGATED",
text: "Aggregated",
},
{
value: "NORMALIZED",
text: "Normalized",
},
{
value: "NORMALIZED_TO_CONTROL",
text: "Normalized to control",
},
{
value: "RELATIVE_TO_CONTROL",
text: "Relative to control",
},
{
value: "FOLD_CHANGE",
text: "Fold change",
},
{
value: "HIGHEST_DOSE",
text: "Highest dose",
},
{
value: "Z-AVERAGE",
text: "Z-AVERAGE",
},
{
value: "INTENSITY-WEIGHTED",
text: "INTENSITY-WEIGHTED",
},
{
value: "NUMBER-BASED",
text: "NUMBER-BASED",
},
{
value: "TOTAL",
text: "TOTAL",
},
{
value: "GEOMETRIC_MEAN",
text: "Geometric mean",
},
{
value: "OTHER",
text: "Other",
}
],
Expand Down

0 comments on commit 524ac0b

Please sign in to comment.