diff --git a/biopet-tools/src/main/scala/nl/lumc/sasc/biopet/tools/FindOverlapMatch.scala b/biopet-tools/src/main/scala/nl/lumc/sasc/biopet/tools/FindOverlapMatch.scala index 2f8672fb350f663b3ac6645255466e285bccec98..f9505119d0897fab3a790d0ec4b4a8781c577e36 100644 --- a/biopet-tools/src/main/scala/nl/lumc/sasc/biopet/tools/FindOverlapMatch.scala +++ b/biopet-tools/src/main/scala/nl/lumc/sasc/biopet/tools/FindOverlapMatch.scala @@ -1,6 +1,6 @@ package nl.lumc.sasc.biopet.tools -import java.io.{File, PrintStream, PrintWriter} +import java.io.{ File, PrintStream } import nl.lumc.sasc.biopet.utils.ToolCommand @@ -55,7 +55,7 @@ object FindOverlapMatch extends ToolCommand { val writer = cmdArgs.outputFile match { case Some(file) => new PrintStream(file) - case _ => sys.process.stdout + case _ => sys.process.stdout } for (i1 <- samplesColumnHeader) { diff --git a/biopet-tools/src/test/scala/nl/lumc/sasc/biopet/tools/FindOverlapMatchTest.scala b/biopet-tools/src/test/scala/nl/lumc/sasc/biopet/tools/FindOverlapMatchTest.scala index b099830f4d10d2387e1fd9d4735acbdc51969339..631438f99e702cafd78d5eff3df935df11f0e3b7 100644 --- a/biopet-tools/src/test/scala/nl/lumc/sasc/biopet/tools/FindOverlapMatchTest.scala +++ b/biopet-tools/src/test/scala/nl/lumc/sasc/biopet/tools/FindOverlapMatchTest.scala @@ -10,8 +10,8 @@ import org.testng.annotations.Test import scala.io.Source /** - * Created by pjvan_thof on 27-9-16. - */ + * Created by pjvan_thof on 27-9-16. + */ class FindOverlapMatchTest extends TestNGSuite with Matchers { private def resourcePath(p: String): String = {