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

Fix endlines in fasta files

parent 6ac5e2c8
No related branches found
No related tags found
No related merge requests found
......@@ -206,6 +206,7 @@ object BastyGenerateFasta extends ToolCommand {
for (c <- chunks.keySet.toList.sortWith(_ < _)) {
writer.print(chunks(c)._1)
}
writer.println()
writer.close
}
if (cmdArgs.outputConsensusVariants != null) {
......@@ -214,6 +215,7 @@ object BastyGenerateFasta extends ToolCommand {
for (c <- chunks.keySet.toList.sortWith(_ < _)) {
writer.print(chunks(c)._2)
}
writer.println()
writer.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