From f025a17a13e77b60ba3b05eb6aedcfd6ca65f807 Mon Sep 17 00:00:00 2001 From: Florian Date: Tue, 21 Jun 2022 11:03:55 +0200 Subject: [PATCH] Matplotlib Hotfix command --- bin/StoatyDive.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/StoatyDive.py b/bin/StoatyDive.py index ee5acca..53d327d 100755 --- a/bin/StoatyDive.py +++ b/bin/StoatyDive.py @@ -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') @@ -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')