-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSnakefile
47 lines (42 loc) · 840 Bytes
/
Snakefile
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
rule psi:
output:
"src/data/all_noistar.nc"
cache:
True
script:
"src/scripts/psi.py"
rule psi_plot:
input:
rules.psi.output
output:
"src/figures/psi_dist.pdf"
script:
"src/scripts/psi_plot.py"
rule polar:
output:
directory("src/data/polar")
cache:
True
script:
"src/scripts/polar.py"
rule polar_plot:
input:
rules.polar.output, rules.psi.output
output:
"src/figures/polar.pdf"
script:
"src/scripts/polar_plot.py"
rule sim:
output:
directory("src/data/simulation")
cache:
True
script:
"src/scripts/sim.py"
rule sim_plot:
input:
"src/data/simulation"
output:
"src/figures/simulation.pdf"
script:
"src/scripts/sim_plot.py"