From d4d1614e61917f050c77ac1e4f39577eb5f6c341 Mon Sep 17 00:00:00 2001 From: Auden Cote-L'Heureux <52716489+AudenCote@users.noreply.github.com> Date: Mon, 21 Aug 2023 13:11:04 -0400 Subject: [PATCH] Small fix to 6_SummaryStats.py --- PTL1/Genomes/Scripts/6_SummaryStats.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PTL1/Genomes/Scripts/6_SummaryStats.py b/PTL1/Genomes/Scripts/6_SummaryStats.py index e3d4967..e2bfe81 100644 --- a/PTL1/Genomes/Scripts/6_SummaryStats.py +++ b/PTL1/Genomes/Scripts/6_SummaryStats.py @@ -235,7 +235,7 @@ def plot_jf(args, nuc_comp): plt.scatter(np.array([val[0] for val in comp_data]), np.array([val[1] for val in comp_data]), s = 1) plt.xlabel("GC content (3rd pos, 4-fold sites)") plt.ylabel("Observed Wright ENc (6 Fold)") - plt.savefig(args.input + '/GC3xENc_Plots/' + taxon + '.png') + plt.savefig(args.input + '/GC3xENc_Plots_' + today + '/' + taxon + '.png') if __name__ == "__main__": args = get_args()