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

Use AsyncFastqWriter instead of BasicFastqWriter

parent 0d3e053a
No related branches found
No related tags found
No related merge requests found
...@@ -17,7 +17,7 @@ import scala.collection.JavaConverters._ ...@@ -17,7 +17,7 @@ import scala.collection.JavaConverters._
import argonaut._, Argonaut._ import argonaut._, Argonaut._
import scalaz._, Scalaz._ import scalaz._, Scalaz._
import htsjdk.samtools.fastq.{ BasicFastqWriter, FastqReader, FastqRecord } import htsjdk.samtools.fastq.{ AsyncFastqWriter, BasicFastqWriter, FastqReader, FastqRecord }
import org.broadinstitute.gatk.utils.commandline.{ Input, Output } import org.broadinstitute.gatk.utils.commandline.{ Input, Output }
import nl.lumc.sasc.biopet.core.BiopetJavaCommandLineFunction import nl.lumc.sasc.biopet.core.BiopetJavaCommandLineFunction
...@@ -185,8 +185,8 @@ object FastqSync extends ToolCommand { ...@@ -185,8 +185,8 @@ object FastqSync extends ToolCommand {
def writeSyncedFastq(sync: Stream[(FastqRecord, FastqRecord)], def writeSyncedFastq(sync: Stream[(FastqRecord, FastqRecord)],
counts: SyncCounts, counts: SyncCounts,
outputFastq1: BasicFastqWriter, outputFastq1: AsyncFastqWriter,
outputFastq2: BasicFastqWriter): Unit = { outputFastq2: AsyncFastqWriter): Unit = {
sync.foreach { sync.foreach {
case (rec1, rec2) => case (rec1, rec2) =>
outputFastq1.write(rec1) outputFastq1.write(rec1)
...@@ -281,8 +281,9 @@ object FastqSync extends ToolCommand { ...@@ -281,8 +281,9 @@ object FastqSync extends ToolCommand {
new FastqReader(commandArgs.inputFastq2)) new FastqReader(commandArgs.inputFastq2))
writeSyncedFastq(synced, counts, writeSyncedFastq(synced, counts,
new BasicFastqWriter(commandArgs.outputFastq1), // using 3000 for queue size to approximate NFS buffer
new BasicFastqWriter(commandArgs.outputFastq2) new AsyncFastqWriter(new BasicFastqWriter(commandArgs.outputFastq1), 3000),
new AsyncFastqWriter(new BasicFastqWriter(commandArgs.outputFastq2), 3000)
) )
} }
} }
...@@ -8,7 +8,7 @@ import java.io.File ...@@ -8,7 +8,7 @@ import java.io.File
import java.nio.file.Paths import java.nio.file.Paths
import scala.collection.JavaConverters._ import scala.collection.JavaConverters._
import htsjdk.samtools.fastq.{ BasicFastqWriter, FastqReader, FastqRecord } import htsjdk.samtools.fastq.{ AsyncFastqWriter, FastqReader, FastqRecord }
import org.mockito.Mockito.{ inOrder => inOrd, when } import org.mockito.Mockito.{ inOrder => inOrd, when }
import org.scalatest.Matchers import org.scalatest.Matchers
import org.scalatest.mock.MockitoSugar import org.scalatest.mock.MockitoSugar
...@@ -191,8 +191,8 @@ class FastqSyncTest extends TestNGSuite with MockitoSugar with Matchers { ...@@ -191,8 +191,8 @@ class FastqSyncTest extends TestNGSuite with MockitoSugar with Matchers {
} }
@Test def testWriteSynced() = { @Test def testWriteSynced() = {
val aMock = mock[BasicFastqWriter] val aMock = mock[AsyncFastqWriter]
val bMock = mock[BasicFastqWriter] val bMock = mock[AsyncFastqWriter]
val sync = Stream( val sync = Stream(
(new FastqRecord("1", "A", "", "H"), new FastqRecord("1", "T", "", "E")), (new FastqRecord("1", "A", "", "H"), new FastqRecord("1", "T", "", "E")),
(new FastqRecord("2", "A", "", "H"), new FastqRecord("2", "T", "", "E"))) (new FastqRecord("2", "A", "", "H"), new FastqRecord("2", "T", "", "E")))
......
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