-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrun.py
57 lines (40 loc) · 1.5 KB
/
run.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on Mon Jul 11 15:58:36 2022
@author: scottrk
"""
print("Compiling and parsing raw data to tables for plotting. Compiled data are in 'data/imported data/'")
exec(open("compile_data.py").read())
print("Generating statistics and p-values. Per-figure statistics can be found in 'data/stats/'")
exec(open("compute_stats.py").read())
print("Generating Figure 1.")
exec(open("Figure_1.py").read())
print("Generating Figure 2.")
exec(open("Figure_2.py").read())
print("Generating Figure 3.")
exec(open("Figure_3.py").read())
print("Generating Figure 4.")
exec(open("Figure_4.py").read())
print("Generating Figure 5.")
exec(open("Figure_5.py").read())
print("Generating Supplemental Figure 1.")
exec(open("Supp_Figure_1.py").read())
print("Generating Supplemental Figure 2.")
exec(open("Supp_Figure_2.py").read())
print("Generating Supplemental Figure 3.")
exec(open("Supp_Figure_3.py").read())
print("Generating Supplemental Figure 4.")
exec(open("Supp_Figure_4.py").read())
print("Generating Supplemental Figure 5.")
exec(open("Supp_Figure_5.py").read())
print("Generating Supplemental Figure 6.")
exec(open("Supp_Figure_6.py").read())
print("Generating Supplemental Figure 7.")
exec(open("Supp_Figure_7.py").read())
print("Generating Supplemental Figure 8.")
exec(open("Supp_Figure_8.py").read())
print("Generating Supplemental Figure 9.")
exec(open("Supp_Figure_9.py").read())
print("Generating Supplemental Figure 10.")
exec(open("Supp_Figure_10.py").read())