Skip to content

Commit

Permalink
format file
Browse files Browse the repository at this point in the history
  • Loading branch information
remo87 committed Sep 19, 2024
1 parent 288cb8f commit 83511a2
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions test/inputs/GqlItTestInputs.scala
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,17 @@ import scala.io.{BufferedSource, Source}

trait GqlItTestInputs {

val geneFile: BufferedSource = Source.fromFile(this.getClass.getResource(s"/gqlInputs/genes.txt").getPath)
val geneFile: BufferedSource =
Source.fromFile(this.getClass.getResource(s"/gqlInputs/genes.txt").getPath)
lazy val geneInputs: Seq[String] = geneFile.getLines().toList
val efoFile: BufferedSource = Source.fromFile(this.getClass.getResource(s"/gqlInputs/efos.txt").getPath)
val efoFile: BufferedSource =
Source.fromFile(this.getClass.getResource(s"/gqlInputs/efos.txt").getPath)
lazy val diseaseInputs: Seq[String] = efoFile.getLines().toList
val drugFile: BufferedSource = Source.fromFile(this.getClass.getResource(s"/gqlInputs/drugs.txt").getPath)
val drugFile: BufferedSource =
Source.fromFile(this.getClass.getResource(s"/gqlInputs/drugs.txt").getPath)
lazy val drugInputs: Seq[String] = drugFile.getLines().toList
val goFile: BufferedSource = Source.fromFile(this.getClass.getResource(s"/gqlInputs/goIds.txt").getPath)
val goFile: BufferedSource =
Source.fromFile(this.getClass.getResource(s"/gqlInputs/goIds.txt").getPath)
lazy val goInputs: Seq[String] = goFile.getLines().toList

val aggregationFilterMap: Map[String, Seq[String]] = Map(
Expand Down

0 comments on commit 83511a2

Please sign in to comment.