Mercurial > repos > iuc > circos
diff stack-histogram.py @ 7:4b519282a05b draft
"planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/circos commit ef20b4968a6d00c49209de6b723f8b96d8bd128a"
author | iuc |
---|---|
date | Mon, 25 May 2020 10:52:02 -0400 |
parents | 740057a5126d |
children | c4bde687c846 |
line wrap: on
line diff
--- a/stack-histogram.py Fri May 01 07:28:50 2020 -0400 +++ b/stack-histogram.py Mon May 25 10:52:02 2020 -0400 @@ -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))