Mercurial > repos > glogobyte > isoread
changeset 22:958330b9bce3 draft
Uploaded
author | glogobyte |
---|---|
date | Wed, 20 Oct 2021 12:11:30 +0000 |
parents | 476121298816 |
children | 6d3abc45aa49 |
files | mirbase_graphs.py |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mirbase_graphs.py Wed Oct 20 12:11:15 2021 +0000 +++ b/mirbase_graphs.py Wed Oct 20 12:11:30 2021 +0000 @@ -88,7 +88,7 @@ patches, texts, autotexts=plt.pie(sizes, labels=labels, colors=colors, startangle=140,autopct='%1.1f%%',radius=0.8) [x.set_fontsize(10) for x in texts] plt.title(group_name1.capitalize() + ' group (reads)',fontsize=12) - labels = 'miRNA RefSeq','templated', 'Unassigned','non-templated' + labels = 'miRNA RefSeq','templated', 'unassigned','non-templated' sizes = [t_mat_counts, t_tem_counts, t_unmap_counts, t_non_counts] colors = ['gold', 'yellowgreen', 'lightcoral', 'lightskyblue'] ax2 = plt.subplot2grid((1,2),(0,1))