changeset 4:900d91d653cb

Add '#' back to header line
author nick
date Tue, 28 May 2013 16:56:43 -0400
parents 4627d99aa105
children fd7ae393d5b5
files allele-counts.py
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/allele-counts.py	Tue May 28 13:05:05 2013 -0400
+++ b/allele-counts.py	Tue May 28 16:56:43 2013 -0400
@@ -108,7 +108,7 @@
   if len(COLUMNS) != len(COLUMN_LABELS):
     fail('Error: Internal column names do not match column labels.')
   if print_header:
-    outfile_handle.write('\t'.join(COLUMN_LABELS)+"\n")
+    outfile_handle.write('#'+'\t'.join(COLUMN_LABELS)+"\n")
 
   # main loop: process and print one line at a time
   sample_names = []