Skip to content
Snippets Groups Projects
Commit 86171153 authored by bow's avatar bow
Browse files

Formatting updates

parent 6827c6b5
No related branches found
No related tags found
No related merge requests found
...@@ -49,8 +49,8 @@ class GentrapTest extends TestNGSuite with Matchers { ...@@ -49,8 +49,8 @@ class GentrapTest extends TestNGSuite with Matchers {
(s"sample_$sampleIdx", (s"sample_$sampleIdx",
Map("libraries" -> Map("libraries" ->
(1 to numLibs) (1 to numLibs)
.map(n => makeLibConfig(n, paired)) .map(n => makeLibConfig(n, paired))
.toMap .toMap
) )
) )
...@@ -58,9 +58,9 @@ class GentrapTest extends TestNGSuite with Matchers { ...@@ -58,9 +58,9 @@ class GentrapTest extends TestNGSuite with Matchers {
private def makeSamplesConfig(numSamples: Int, numLibsEachSample: Int, pairMode: String): SamplesConfig = private def makeSamplesConfig(numSamples: Int, numLibsEachSample: Int, pairMode: String): SamplesConfig =
Map("samples" -> Map("samples" ->
(1 to numSamples) (1 to numSamples)
// if paired == "mixed", alternate paired/not paired between each number // if paired == "mixed", alternate paired/not paired between each number
.map(n => makeSampleConfig(n, numLibsEachSample, if (pairMode == "mixed") n % 2 == 0 else pairMode == "paired")) .map(n => makeSampleConfig(n, numLibsEachSample, if (pairMode == "mixed") n % 2 == 0 else pairMode == "paired"))
.toMap .toMap
) )
private lazy val validExpressionMeasures = Set( private lazy val validExpressionMeasures = Set(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment