comparison fsd.py @ 34:faa56fbf6b32 draft

planemo upload for repository https://github.com/monikaheinzl/duplexanalysis_galaxy/tree/master/tools/fsd commit b8a2f7b7615b2bcd3b602027af31f4e677da94f6-dirty
author mheinzl
date Mon, 03 Jun 2019 07:06:03 -0400
parents 55c7e49eea88
children 56ad50707dc8
comparison
equal deleted inserted replaced
33:55c7e49eea88 34:faa56fbf6b32
363 363
364 counts2_rel = ax.bar(x, new_y, align="edge", width=w, 364 counts2_rel = ax.bar(x, new_y, align="edge", width=w,
365 edgecolor="black", label=label[i], alpha=0.8, color=colors[i]) 365 edgecolor="black", label=label[i], alpha=0.8, color=colors[i])
366 366
367 else: 367 else:
368 print("absolute")
369 print(y.shape)
370 print(x.shape)
371 print(y)
368 y = list(y) 372 y = list(y)
369 counts2 = ax.bar(x, y, align="edge", width=w, edgecolor="black", label=label[i], 373 counts2 = ax.bar(x, y, align="edge", width=w, edgecolor="black", label=label[i],
370 alpha=0.8, color=colors[i]) 374 alpha=0.8, color=colors[i])
371 if i == len(list_to_plot2): 375 if i == len(list_to_plot2):
372 barWidth += 1. / (len(list_to_plot) + 1) + 1. / (len(list_to_plot) + 1) 376 barWidth += 1. / (len(list_to_plot) + 1) + 1. / (len(list_to_plot) + 1)