From 53e916c16444cf6fcadbe43a61fb4a0a710bc8bf Mon Sep 17 00:00:00 2001 From: karolamik13 Date: Fri, 6 Dec 2024 22:30:47 +0100 Subject: [PATCH] InSty (calcSignatureInteractions) changes in the plot title --- prody/proteins/interactions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prody/proteins/interactions.py b/prody/proteins/interactions.py index 1b9e26f80..8254e2383 100644 --- a/prody/proteins/interactions.py +++ b/prody/proteins/interactions.py @@ -526,7 +526,7 @@ def plot_barh(result, bond_type, **kwargs): plt.ylim(-1, result_chunk.shape[0]) plt.ylabel('{} Pairs of Residue Numbers'.format(bond_type)) plt.xlabel('Percentage') - plt.title('Persistence of {} Bonds (entries {}-{})'.format(bond_type, start_idx + 1, end_idx)) + plt.title('Persistence of {} (entries {}-{})'.format(bond_type, start_idx + 1, end_idx)) # Save each plot with an incremented filename for multiple plots output_plot_file = '{}_plot_part{}.png'.format(bond_type, plot_idx + 1) log_message("Saving plot to: {}".format(output_plot_file))