-
Notifications
You must be signed in to change notification settings - Fork 1
/
Snakefile
48 lines (48 loc) · 990 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
48
rule sim_figure1:
output:
directory("src/data/Figure1")
conda:
"environment.yml"
cache:
True
script:
"src/scripts/run_ebtel_figure1.py"
rule sim_figure2:
output:
directory("src/data/Figure2")
conda:
"environment.yml"
cache:
True
script:
"src/scripts/run_ebtel_figure2.py"
rule sim_figure3:
output:
directory("src/data/Figure3")
conda:
"environment.yml"
cache:
True
script:
"src/scripts/run_ebtel_figure3.py"
rule plot_figure1:
input:
"src/data/Figure1"
conda:
"environment.yml"
script:
"src/scripts/render_figure1.py"
rule plot_figure2:
input:
"src/data/Figure2"
conda:
"environment.yml"
script:
"src/scripts/render_figure2.py"
rule plot_figure3:
input:
"src/data/Figure3"
conda:
"environment.yml"
script:
"src/scripts/render_figure3.py"