diff stack-histogram.py @ 7:ecaa0210e62b draft

"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit ef20b4968a6d00c49209de6b723f8b96d8bd128a"
author iuc
date Mon, 25 May 2020 14:50:52 +0000
parents b84d385679e2
children 8b1cf140bbd4
line wrap: on
line diff
--- a/stack-histogram.py	Fri May 01 11:28:11 2020 +0000
+++ b/stack-histogram.py	Mon May 25 14:50:52 2020 +0000
@@ -23,5 +23,5 @@
     for chrom in k:
         for interval_set in zip(*[bw.intervals(chrom) for bw in bws]):
             (start, end) = interval_set[0][0:2]
-            values = ','.join(map(str, [x[2] for x in interval_set]))
+            values = ",".join(map(str, [x[2] for x in interval_set]))
             sys.stdout.write("%s\t%s\t%s\t%s\n" % (chrom, start, end, values))