# HG changeset patch # User mheinzl # Date 1559554668 14400 # Node ID 807d893d04a74376eeb5ed5b05c7454a6f5bca29 # Parent 5ae4fd1d4a12d5653405029482eff4a75d252004 planemo upload for repository https://github.com/monikaheinzl/duplexanalysis_galaxy/tree/master/tools/fsd commit b8a2f7b7615b2bcd3b602027af31f4e677da94f6-dirty diff -r 5ae4fd1d4a12 -r 807d893d04a7 fsd.py --- a/fsd.py Mon Jun 03 05:11:45 2019 -0400 +++ b/fsd.py Mon Jun 03 05:37:48 2019 -0400 @@ -337,17 +337,19 @@ x = [xi + barWidth for xi in x] w = 1./(len(list_to_plot) + 1) + print(label[i]) print(colors[i]) print(w) + # linewidth=1, if to_plot[l] == "Relative frequencies": counts2_rel = ax.bar(x, list(numpy.float_(y)) / sum(y), align="edge", width=w, - edgecolor="black", label=label[i], alpha=0.8, linewidth=1, color=colors[i]) + edgecolor="black", label=label[i], alpha=0.8, color=colors[i]) else: counts2 = ax.bar(x, y, align="edge", width=w, edgecolor="black", label=label[i], - alpha=0.8, linewidth=1, color=colors[i]) + alpha=0.8, color=colors[i]) if i == len(list_to_plot2): barWidth += 1. / (len(list_to_plot) + 1) + 1. / (len(list_to_plot) + 1) else: