46 lines
518 B
Markdown
46 lines
518 B
Markdown
# Workflow
|
|
|
|
## Daily Use
|
|
|
|
Initialize local state:
|
|
|
|
```bash
|
|
make init
|
|
```
|
|
|
|
Check paths:
|
|
|
|
```bash
|
|
make doctor
|
|
```
|
|
|
|
Submit a Figure 1 treatment:
|
|
|
|
```bash
|
|
make submit-figure1-m10
|
|
```
|
|
|
|
Run jobs:
|
|
|
|
```bash
|
|
make run-loop
|
|
```
|
|
|
|
Collate completed results:
|
|
|
|
```bash
|
|
make collate-figure1
|
|
```
|
|
|
|
Inspect current status:
|
|
|
|
```bash
|
|
make status
|
|
```
|
|
|
|
## Current Assumption
|
|
|
|
The Makefile now drives the local orchestration code in `renunney`, while the
|
|
simulation backend is still imported from the legacy `cost_of_substitution`
|
|
directory.
|