Skip to content

Commit

Permalink
endline optimization from @shokrof pull request
Browse files Browse the repository at this point in the history
  • Loading branch information
rizkg committed Jul 17, 2018
1 parent b8fd654 commit 2b4a5a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion utils/dsk2ascii.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class DSK2ASCII : public Tool
for (itKmers->first(); !itKmers->isDone(); itKmers->next())
{
const Count& count = itKmers->item();
output << model.toString(count.value) << " " << count.abundance << endl;
output << model.toString(count.value) << " " << count.abundance << "\n";
}

output.close();
Expand Down

0 comments on commit 2b4a5a9

Please sign in to comment.