Skip to content

Commit

Permalink
Merge pull request #68 from opentargets/remove-unused-seu-field
Browse files Browse the repository at this point in the history
Remove `seu` field from variant.
  • Loading branch information
JarrodBaker authored Jul 15, 2022
2 parents 21f53c2 + 366325d commit a85290a
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 5 deletions.
3 changes: 0 additions & 3 deletions app/models/database/FRM.scala
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,6 @@ object FRM {

def gnomadAFR = column[Option[Double]]("gnomad_afr")

def gnomadSEU = column[Option[Double]]("gnomad_seu")

def gnomadAMR = column[Option[Double]]("gnomad_amr")

def gnomadASJ = column[Option[Double]]("gnomad_asj")
Expand Down Expand Up @@ -156,7 +154,6 @@ object FRM {
def gnomadAnnotations =
(
gnomadAFR,
gnomadSEU,
gnomadAMR,
gnomadASJ,
gnomadEAS,
Expand Down
1 change: 0 additions & 1 deletion app/models/entities/DNA.scala
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@ object DNA {

case class GnomadAnnotation(
afr: Option[Double] = None,
seu: Option[Double] = None,
amr: Option[Double] = None,
asj: Option[Double] = None,
eas: Option[Double] = None,
Expand Down
1 change: 0 additions & 1 deletion app/models/implicits/EsImplicits.scala
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ object EsImplicits {

implicit val gnomadAnnotation: Reads[GnomadAnnotation] = (
(JsPath \ "gnomad_afr").readNullable[Double] and
(JsPath \ "gnomad_seu").readNullable[Double] and
(JsPath \ "gnomad_amr").readNullable[Double] and
(JsPath \ "gnomad_asj").readNullable[Double] and
(JsPath \ "gnomad_eas").readNullable[Double] and
Expand Down

0 comments on commit a85290a

Please sign in to comment.