Skip to content
Snippets Groups Projects
Commit deee03f3 authored by Sander van der Zeeuw's avatar Sander van der Zeeuw
Browse files

add logger info for the total nr of reads at the end

parent 734801f6
No related branches found
No related tags found
No related merge requests found
......@@ -65,7 +65,7 @@ object CheckFastqPairs extends ToolCommand {
val id1 = readHeader.takeWhile(_ != ' ')
val id2 = readHeader2.takeWhile(_ != ' ')
if (counter % 1e4 == 0) logger.info(counter + " reads processed")
if (counter % 1e5 == 0) logger.info(counter + " reads processed")
val allowedBases = """([actgnACTGN+]+)""".r
......@@ -98,6 +98,7 @@ object CheckFastqPairs extends ToolCommand {
throw new IllegalStateException("R2 has more reads then R1")
logger.info("Done processing the Fastq file(s) no errors found")
logger.info("total reads processed: " + counter)
//close both iterators
readFq1.close()
readFq2.foreach(_.close())
......
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