Skip to content

Commit

Permalink
3630 Update names to fix json parsing (#243)
Browse files Browse the repository at this point in the history
* Update names to fix json parsing
update field names to align

* delete non used field
  • Loading branch information
remo87 authored and jdhayhurst committed Dec 11, 2024
1 parent 852a22e commit 41f1c2c
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions app/models/entities/GwasIndex.scala
Original file line number Diff line number Diff line change
Expand Up @@ -227,16 +227,10 @@ object GwasIndex extends Logging {
resolve = js => (js.value \ "analysisFlags").asOpt[Seq[String]]
),
Field(
"sumStatQCPerformed",
OptionType(BooleanType),
description = Some(""),
resolve = js => (js.value \ "sumStatQCPerformed").asOpt[Boolean]
),
Field(
"sumStatQCValues",
"sumstatQCValues",
OptionType(ListType(sumStatQCImp)),
description = Some(""),
resolve = js => (js.value \ "sumStatQCValues").asOpt[Seq[SumStatQC]]
resolve = js => (js.value \ "sumstatQCValues").asOpt[Seq[SumStatQC]]
)
)
lazy val credibleSetField: Field[Backend, JsValue] =
Expand Down

0 comments on commit 41f1c2c

Please sign in to comment.