forked from opentargets/genetics-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
wip: include new table to show the locus to gene setting a study and …
…a locus
- Loading branch information
Showing
7 changed files
with
186 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ version := "latest" | |
|
||
lazy val root = (project in file(".")).enablePlugins(PlayScala) | ||
|
||
scalaVersion := "2.12.8" | ||
scalaVersion := "2.12.10" | ||
maintainer := "[email protected]" | ||
|
||
javacOptions ++= Seq( "-encoding", "UTF-8" ) | ||
|
@@ -18,7 +18,34 @@ scalacOptions in ThisBuild ++= Seq( | |
"-Xfatal-warnings" | ||
) | ||
|
||
/* | ||
// include resources into the unversal zipped package | ||
mappings in Universal ++= directory(baseDirectory.value / "resources") | ||
resolvers += Resolver.sonatypeRepo("releases") | ||
libraryDependencies += guice | ||
libraryDependencies += "com.github.pathikrit" %% "better-files" % "3.8.0" | ||
libraryDependencies += "com.typesafe.slick" %% "slick" % "3.3.2" | ||
libraryDependencies += "org.scalatestplus.play" %% "scalatestplus-play" % "4.0.3" % Test | ||
val playVersion = "2.7.3" | ||
libraryDependencies += "com.typesafe.play" %% "play" % playVersion | ||
libraryDependencies += "com.typesafe.play" %% "filters-helpers" % playVersion | ||
libraryDependencies += "com.typesafe.play" %% "play-logback" % playVersion | ||
libraryDependencies += "com.typesafe.play" %% "play-json" % playVersion | ||
libraryDependencies += "com.typesafe.play" %% "play-slick" % "4.0.2" | ||
libraryDependencies += "ru.yandex.clickhouse" % "clickhouse-jdbc" % "0.2" | ||
libraryDependencies += "org.sangria-graphql" %% "sangria" % "2.0.0-M1" | ||
libraryDependencies += "org.sangria-graphql" %% "sangria-play-json" % "2.0.0" | ||
val s4sVersion = "7.3.1" | ||
libraryDependencies ++= Seq( | ||
"com.sksamuel.elastic4s" %% "elastic4s-core" % s4sVersion, | ||
"com.sksamuel.elastic4s" %% "elastic4s-client-esjava" % s4sVersion, | ||
"com.sksamuel.elastic4s" %% "elastic4s-json-play" % s4sVersion | ||
) | ||
*/ | ||
// include resources into the unversal zipped package | ||
mappings in Universal ++= directory(baseDirectory.value / "resources") | ||
|
||
|
@@ -34,7 +61,7 @@ libraryDependencies += "com.typesafe.play" %% "play" % "2.6.23" | |
libraryDependencies += "com.typesafe.play" %% "play-logback" % "2.6.23" | ||
libraryDependencies += "com.typesafe.play" %% "play-json" % "2.6.13" | ||
libraryDependencies += "com.typesafe.play" %% "play-slick" % "3.0.3" | ||
libraryDependencies += "ru.yandex.clickhouse" % "clickhouse-jdbc" % "0.1.54" | ||
libraryDependencies += "ru.yandex.clickhouse" % "clickhouse-jdbc" % "0.2.3" | ||
libraryDependencies += "org.sangria-graphql" %% "sangria" % "1.4.2" | ||
libraryDependencies += "org.sangria-graphql" %% "sangria-play-json" % "1.0.5" | ||
libraryDependencies += "com.nrinaudo" %% "kantan.csv" % "0.4.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
sbt.version=1.2.8 | ||
sbt.version=1.3.6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.6.23") | ||
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.5.1") | ||
addSbtPlugin("org.scoverage" % "sbt-scoverage" % "1.6.0") |