diff cut_timeseries.py @ 5:0026cd452d0e draft default tip

planemo upload commit 72cee9103c0ae4acb5794afaed179bea2c729f2c-dirty
author stevecassidy
date Sat, 11 Mar 2017 21:37:57 -0500
parents f188eb0b526d
children
line wrap: on
line diff
--- a/cut_timeseries.py	Wed Feb 01 22:36:07 2017 -0500
+++ b/cut_timeseries.py	Sat Mar 11 21:37:57 2017 -0500
@@ -94,7 +94,7 @@
     headers,rows = cut(zip(tsidents, tsfiles), args.segment_list, args.cutat)
 
     with open(args.output_path, 'w') as out:
-        writer = csv.writer(out)
+        writer = csv.writer(out, dialect=csv.excel_tab)
         writer.writerow(headers)
         for row in rows:
             writer.writerow(row)