# HG changeset patch # User mvdbeek # Date 1454515645 18000 # Node ID 9b62e6b0d219034cab2eeef7b7b070fda8a6b7a7 # Parent ebfc73c72652b662953fffac8314d58c0686a55c planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/msp_sr_readmap_and_size_histograms commit 032b3f084f3b2a6d42ba476ef55f4de593b58606-dirty diff -r ebfc73c72652 -r 9b62e6b0d219 readmap.py --- 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 = []