Mercurial > repos > mheinzl > fsd
diff fsd.py @ 46:901827154779 draft
planemo upload for repository https://github.com/monikaheinzl/duplexanalysis_galaxy/tree/master/tools/fsd commit 033dd7b750f68e8aa68f327d7d72bd311ddbee4e-dirty
author | mheinzl |
---|---|
date | Tue, 27 Aug 2019 07:51:03 -0400 |
parents | 6651e76baca1 |
children | 1ed4a127c41a |
line wrap: on
line diff
--- a/fsd.py Tue Aug 27 07:36:53 2019 -0400 +++ b/fsd.py Tue Aug 27 07:51:03 2019 -0400 @@ -624,17 +624,17 @@ list_y.append(y) if i == 0: - counts2 = ax2.bar(x, y, align="edge", width=0.8, + counts2 = ax2.bar(x, y, align="center", width=0.8, edgecolor="black", label=label[0], linewidth=1, alpha=1, color=col[0]) elif i == 1: - counts2 = ax2.bar(x, y, bottom=list_y[i-1], align="edge", width=0.8, + counts2 = ax2.bar(x, y, bottom=list_y[i-1], align="center", width=0.8, edgecolor="black", label=label[1], linewidth=1, alpha=1, color=col[1]) elif i == 2: bars = numpy.add(list_y[0], list_y[1]).tolist() - counts2 = ax2.bar(x, y, bottom=bars, align="edge", width=0.8, + counts2 = ax2.bar(x, y, bottom=bars, align="center", width=0.8, edgecolor="black", label=label[2], linewidth=1, alpha=1, color=col[2])