diff cwpair2.py @ 6:c4b926c9831c draft default tip

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/cwpair2 commit ca66053a0d915edba3d7f1d4ce014718e7f4f0f2
author iuc
date Thu, 02 May 2019 08:30:22 -0400
parents d843468aeb8f
children
line wrap: on
line diff
--- a/cwpair2.py	Mon Nov 06 23:19:50 2017 -0500
+++ b/cwpair2.py	Thu May 02 08:30:22 2019 -0400
@@ -62,7 +62,7 @@
         by_file[path].append(stats)
     # Write tabular statistics file.
     keys = ['fname', 'final_mode', 'preview_mode', 'perc95', 'paired', 'orphans']
-    statistics_out = csv.writer(open(args.statistics_output, 'wt'), delimiter='\t')
+    statistics_out = csv.writer(open(args.statistics_output, 'wt'), delimiter='\t', lineterminator="\n")
     statistics_out.writerow(keys)
     for file_path, statistics in by_file.items():
         for stats in statistics: