diff --git a/biopet-tools/src/main/scala/nl/lumc/sasc/biopet/tools/bamstats/BamStats.scala b/biopet-tools/src/main/scala/nl/lumc/sasc/biopet/tools/bamstats/BamStats.scala index e40f3614a80e560bf9e1561460ad55d3ea2c7875..530614d2fb56e22af679d14bfe9bf26a74e68a15 100644 --- a/biopet-tools/src/main/scala/nl/lumc/sasc/biopet/tools/bamstats/BamStats.scala +++ b/biopet-tools/src/main/scala/nl/lumc/sasc/biopet/tools/bamstats/BamStats.scala @@ -109,9 +109,10 @@ object BamStats extends ToolCommand { def processContig(region: BedRecord, bamFile: File, binSize: Int, threadBinSize: Int, outputDir: File): Stats = { val scattersFutures = region .scatter(binSize) - .grouped((region.length.toDouble / threadBinSize).ceil.toInt) + .grouped((region.length.toDouble / binSize).ceil.toInt / (region.length.toDouble / threadBinSize).ceil.toInt) .map(scatters => Future { processThread(scatters, bamFile) }) - val stats = waitOnFutures(scattersFutures.toList, Some(region.chr)) + .toList + val stats = waitOnFutures(scattersFutures, Some(region.chr)) val contigDir = new File(outputDir, "contigs" + File.separator + region.chr) contigDir.mkdirs() stats.writeStatsToFiles(contigDir) diff --git a/shiva/src/test/scala/nl/lumc/sasc/biopet/pipelines/shiva/variantcallers/HaploTypeCallerGvcfTest.scala b/shiva/src/test/scala/nl/lumc/sasc/biopet/pipelines/shiva/variantcallers/HaploTypeCallerGvcfTest.scala index f07376157878f0c0807f13fca1d1410886721890..f028be3cefcb8e03858615d70eee0a7e5a310a35 100644 --- a/shiva/src/test/scala/nl/lumc/sasc/biopet/pipelines/shiva/variantcallers/HaploTypeCallerGvcfTest.scala +++ b/shiva/src/test/scala/nl/lumc/sasc/biopet/pipelines/shiva/variantcallers/HaploTypeCallerGvcfTest.scala @@ -7,8 +7,8 @@ import org.scalatest.testng.TestNGSuite import org.testng.annotations.Test /** - * Created by Sander Bollen on 13-7-16. - */ + * Created by Sander Bollen on 13-7-16. + */ class HaploTypeCallerGvcfTest extends TestNGSuite with Matchers { @Test