From da2b5d420b57f94b31e98fec0dfe819302477d21 Mon Sep 17 00:00:00 2001 From: Kenneth Jao Date: Sun, 24 Oct 2021 15:41:35 -0400 Subject: [PATCH] Removed temporary output for width_diagrams --- scripts/width_diagrams.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/scripts/width_diagrams.py b/scripts/width_diagrams.py index 40a7f09..69e64e9 100644 --- a/scripts/width_diagrams.py +++ b/scripts/width_diagrams.py @@ -156,10 +156,6 @@ def main(): ax.plot(widths, all_disorder_count) axis_settings(ax, widths) - with open("N83-prob.txt", "w") as f: - f.write(", ".join([str(x) for x in widths]) + "\n") - f.write(", ".join([str(x) for x in all_disorder_count])) - ax.yaxis.set_major_formatter(mtick.PercentFormatter()) ax.title.set_text(f"Probability of Disorder - N{domain.n}") ax.set_xlabel("Width") @@ -245,11 +241,6 @@ def main(): ax.plot(widths, max_unorder_off, color="C0", linestyle="dotted") axis_settings(ax, widths) - with open("N83-od.txt", "w") as f: - f.write(", ".join([str(x) for x in widths]) + "\n") - f.write(", ".join([str(x) for x in min_unorder_off]) + "\n") - f.write(", ".join([str(x) for x in max_unorder_off])) - for i in null_unorder: ax.scatter(widths[i], 0, marker="X", color="blue", s=50, zorder=4) # ax.scatter(widths[i], max_unorder[i] - offset[i],