Skip to content
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
7 changes: 5 additions & 2 deletions app/models/entities/Expressions.scala
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ case class BaselineExpressionRow(
specificity_score: Option[Double],
datasourceId: String,
datatypeId: String,
unit: String
unit: String,
qualityControls: Option[String]
)

case class BaselineExpression(
Expand Down Expand Up @@ -101,6 +102,7 @@ object BaselineExpression {
val datasourceId: String = r.<<
val datatypeId: String = r.<<
val unit: String = r.<<
val qualityControls: Option[String] = r.<<?

BaselineExpressionRow(
targetId,
Expand All @@ -120,7 +122,8 @@ object BaselineExpression {
specificity_score,
datasourceId,
datatypeId,
unit
unit,
qualityControls
)
}

Expand Down
3 changes: 2 additions & 1 deletion app/models/entities/Target.scala
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@ case class LocationAndSource(
location: String,
source: String,
termSL: Option[String],
labelSL: Option[String]
labelSL: Option[String],
targetModifier: Option[String]
)

case class TargetClass(id: Long, label: String, level: String)
Expand Down
2 changes: 1 addition & 1 deletion conf/application.conf
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ ot {
}
literature {
label = "Literature table"
name = "literature"
name = "literature_entity_lut"
}
l2gPredictions {
label = "Locus to gene prediction table"
Expand Down
Loading