Skip to content
Snippets Groups Projects
Commit 1cdd1970 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

Fix code warning

parent 517d8d61
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ object SageCountFastq extends ToolCommand {
logger.info("Writting outputfile: " + commandArgs.output)
val writer = new PrintWriter(commandArgs.output)
sortedCounts.foreach { case (seq, count) => writer.println(seq + "\t" + count) }
sortedCounts.foreach { case (s, c) => writer.println(s + "\t" + c) }
writer.close()
}
}
\ No newline at end of file
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