UNPKG

3.71 kBMarkdownView Raw
1[![Build Status](https://travis-ci.com/nextstrain/auspice.svg?branch=master)](https://travis-ci.com/nextstrain/auspice)
2[![NPM version](https://img.shields.io/npm/v/auspice.svg?style=flat)](https://www.npmjs.com/package/auspice)
3[![License: AGPL v3](https://img.shields.io/badge/License-AGPL%20v3-blue.svg)](https://www.gnu.org/licenses/agpl-3.0)
4
5
6Nextstrain is an open-source project to harness the scientific and public health potential of pathogen genome data.
7We provide a continually-updated view of publicly available data with powerful analytics and visualizations showing pathogen evolution and epidemic spread.
8Our goal is to aid epidemiological understanding and improve outbreak response.
9
10Resulting data and inferences are available live at the website [nextstrain.org](https://nextstrain.org).
11
12# Auspice
13
14*Definition: Observation by an augur, ie a prophetic sign.*
15
16Auspice is an open-source interactive web app for visualizing phylogenomic data.
17It may be used in tandem with nextstrain's bioinformatics toolkit [augur](https://github.com/nextstrain/augur) or on its own.
18Auspice may be used to explore datasets locally or run as a as a server to share results.
19
20## Documentation
21
22**Please see [nextstrain.github.io/auspice](https://nextstrain.github.io/auspice) for auspice documentation.**
23
24
25## Installation
26
27```bash
28npm install --global auspice
29```
30
31See [here](https://nextstrain.github.io/auspice/introduction/install) for full instructions, including how to install from source.
32
33
34## Quickstart
35
36In order to get up & running you'll need to have some datasets to visualise.
37Please see the [nextstrain docs](https://nextstrain.org/docs/) for tutorials on how to do this.
38For the purposes of getting started, you can download the current zika dataset via:
39
40```
41mkdir datasets
42curl http://data.nextstrain.org/zika.json --compressed -o datasets/zika.json
43```
44
45And then run `auspice` via:
46```
47auspice view --datasetDir datasets
48```
49This will allow you to run auspice locally (i.e. from your computer) and view the dataset which is behind [nextstrain.org/zika](https://nextstrain.org/zika).
50
51
52Run `auspice --help` or visit [nextstrain.github.io/auspice](https://nextstrain.github.io/auspice) for more information.
53
54## Development, comments, issues and bugs
55
56Auspice is developed via GitHub and issues are very welcome. Alternatively, [email us](mailto:hello@nextstrain.org) with any questions or comments you may have.
57If you are interested in submitting a pull request please use [eslint](https://eslint.org/) as much as possible -- thanks!
58
59New versions are released via the `./releaseNewVersion.sh` script from an up-to-date `master` branch. It will prompt you for the version number increase, push changes to the `release` branch and, as long as Travis-CI is successful then a new version will be automatically published to [npm](https://www.npmjs.com/package/auspice).
60
61Please see [docs-src/README](./docs-src/README.md) for how the auspice documentation site is built.
62
63> Note that currently the documentation must be rebuilt & pushed to GitHub _after_ a new version is released in order for the changelog to correctly appear at [nextstrain.github.io/auspice/releases/changelog](https://nextstrain.github.io/auspice/releases/changelog).
64
65
66## License and copyright
67Copyright 2014-2019 Trevor Bedford and Richard Neher.
68
69Source code to Nextstrain is made available under the terms of the [GNU Affero General Public License](LICENSE.txt) (AGPL). Nextstrain is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.