changeset 3:9b62e6b0d219 draft

planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/msp_sr_readmap_and_size_histograms commit 032b3f084f3b2a6d42ba476ef55f4de593b58606-dirty
author mvdbeek
date Wed, 03 Feb 2016 11:07:25 -0500
parents ebfc73c72652
children 4efe210c91f3
files readmap.py
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/readmap.py	Wed Feb 03 09:20:34 2016 -0500
+++ b/readmap.py	Wed Feb 03 11:07:25 2016 -0500
@@ -89,11 +89,11 @@
   gene, coordinate, count, orientation = listify_plottable_item(first_line)
   if not coordinate == "0":
     new_line = "\t".join([gene, "0", "0", "F"])
-    plottable = new_line + plottable
+    plottable = [new_line] + plottable
   gene_length = str(lookup_gene_length(gene, readDict))
   if not coordinate == gene_length:
     last_line = "\t".join([gene, gene_length, "0", "F"])
-    plottable = plottable + last_line
+    plottable = plottable + [last_line]
 
 def write_readplot_dataframe(readDict, readmap_file):
   listoflines = []