Skip to content

Commit

Permalink
Matplotlib Hotfix command
Browse files Browse the repository at this point in the history
  • Loading branch information
heylf committed Jun 21, 2022
1 parent 150d52c commit f025a17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/StoatyDive.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ def main():
f1 = plt.figure(figsize=(3, 5), dpi=350)
plt.violinplot(filtered_varcoeff_coverage_peaks)
plt.ylim(0.0, scale_max)
plt.xticks([], 'none')
plt.xticks([])
plt.ylabel('Coefficient of Variation of the Peak Profiles')
f1.savefig(args.output_folder + "/CV_Distribution_{}.pdf".format(outfilename), bbox_inches='tight')

Expand All @@ -570,7 +570,7 @@ def main():
f2 = plt.figure(figsize=(3, 5), dpi=350)
plt.violinplot(filtered_varcoeff_coverage_peaks)
plt.ylim(0.0, 1.0)
plt.xticks([], 'none')
plt.xticks([])
plt.ylabel('Normalized Coefficient of Variation of the Peak Profiles')
f2.savefig(args.output_folder + "/Norm_CV_Distribution_{}.pdf".format(outfilename), bbox_inches='tight')

Expand Down

0 comments on commit f025a17

Please sign in to comment.