diff mircounts.py @ 4:da1aa7de2b19 draft

planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/mircounts commit ddaf9622722487d010001cd1f255107adf0c332d
author artbio
date Mon, 04 Sep 2017 17:55:01 -0400
parents da29af78a960
children 2a08a6eb471c
line wrap: on
line diff
--- a/mircounts.py	Wed Jul 26 19:15:08 2017 -0400
+++ b/mircounts.py	Mon Sep 04 17:55:01 2017 -0400
@@ -104,7 +104,6 @@
     writes a count table
     """
     F = open(outfile, 'w')
-    F.write('Gene\tCounts\n')
     for gene in sorted(countdict):
         F.write('%s\t%s\n' % (gene, str(countdict[gene])))
     F.close()