# HG changeset patch # User glogobyte # Date 1634731890 0 # Node ID 958330b9bce3a219d3c3a5a7a36e62772441cb51 # Parent 47612129881678cf93e98c205390d2e390f9de4e Uploaded diff -r 476121298816 -r 958330b9bce3 mirbase_graphs.py --- 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))