Small fix to 6_SummaryStats.py

This commit is contained in:
Auden Cote-L'Heureux 2023-08-21 13:11:04 -04:00 committed by GitHub
parent b1bd9873af
commit d4d1614e61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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()