File: README.md

package info (click to toggle)
augur 24.4.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,312 kB
  • sloc: python: 14,253; sh: 227; makefile: 35
file content (26 lines) | stat: -rw-r--r-- 493 bytes parent folder | download | duplicates (4)
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
# Augur manuscript

## Setup

``` bash
conda create -n augur-manuscript graphviz pandoc
conda activate augur-manuscript
```

## Compile manuscript

Use pandoc to compile the paper.

```bash
make
```

Alternately, use [JOSS's Docker image to compile the paper](https://joss.readthedocs.io/en/latest/submitting.html#docker) from this `paper` directory.

``` bash
docker run --rm \
    --volume $PWD:/data \
    --user $(id -u):$(id -g) \
    --env JOURNAL=joss \
    openjournals/paperdraft
```