45 lines
477 B
Markdown
45 lines
477 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 drives the orchestration code in the legacy
|
|
`cost_of_substitution` directory until that code is migrated here.
|