-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSnakefile
More file actions
35 lines (31 loc) · 812 Bytes
/
Snakefile
File metadata and controls
35 lines (31 loc) · 812 Bytes
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
rule runall:
input:
"results/stackplot_by_class.png",
"results/barplot_by_weekday.png",
"results/heatmap_by_weekday.png"
rule prepare_data:
output:
"data/master/studytime.csv"
shell:
"python3 src/data-integration.py"
rule make_stackplot:
input:
"data/master/studytime.csv"
output:
"results/stackplot_by_class.png"
shell:
"python3 src/make-stackplot-by-week.py"
rule make_barplot:
input:
"data/master/studytime.csv"
output:
"results/barplot_by_weekday.png"
shell:
"python3 src/make-barplot-by-weekday.py"
rule make_heatmap:
input:
"data/master/studytime.csv"
output:
"results/heatmap_by_weekday.png"
shell:
"python3 src/make-heatmap-by-weekday.py"