-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdvc.yaml
More file actions
32 lines (32 loc) · 1020 Bytes
/
dvc.yaml
File metadata and controls
32 lines (32 loc) · 1020 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
stages:
collect-data:
cmd: calkit xenv -n py --no-check -- python
scripts/collect-data.py
deps:
- scripts/collect-data.py
- .calkit/env-locks/py
outs:
- data/raw/data.csv
desc: Automatically generated from the 'collect-data' stage in
calkit.yaml. Changes made here will be overwritten.
plot-voltage:
cmd: calkit xenv -n py --no-check -- python
scripts/plot-voltage.py
deps:
- scripts/plot-voltage.py
- .calkit/env-locks/py
- data/raw/data.csv
outs:
- figures/voltage-time-series.png
desc: Automatically generated from the 'plot-voltage' stage in
calkit.yaml. Changes made here will be overwritten.
build-paper:
cmd: calkit latex build -e tex --no-check paper/paper.tex
deps:
- paper/paper.tex
- figures
- .calkit/env-locks/tex
outs:
- paper/paper.pdf
desc: Automatically generated from the 'build-paper' stage in
calkit.yaml. Changes made here will be overwritten.