Skip to content

Commit

Permalink
nextstrain installation and environment
Browse files Browse the repository at this point in the history
  • Loading branch information
ktmeaton committed Apr 22, 2020
1 parent 09ec15f commit a571079
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
26 changes: 26 additions & 0 deletions README_NextStrain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# NextStrain Document

## Installation

### Install NextStrain into Conda env
```
curl http://data.nextstrain.org/nextstrain.yml --compressed -o nextstrain.yml
conda env create --name nextstrain-env --file nextstrain.yml
conda activate nextstrain-env
npm install --global auspice
```

### Test the installation
```
conda activate nextstrain-env
# Test things are installed / run analyses
augur -h
auspice -h
nextstrain -h
conda deactivate nextstrain-env
```

## NextStrain Analysis

### Entry Point IQTREE Phylogeny
Follow the [Tuberculosis Tutorial](https://nextstrain.org/docs/tutorials/tb) picking up right after [Get the Topology](https://nextstrain.org/docs/tutorials/tb#get-the-topology).
23 changes: 23 additions & 0 deletions nextstrain.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: nextstrain
channels:
- bioconda
- defaults
dependencies:
- cvxopt
- datrie
- fasttree
- iqtree
- mafft
- opencv
- pandas
- psutil
- python=3.6*
- nodejs=10
- raxml
- vcftools
- git
- pip
- pip:
- nextstrain-augur
- nextstrain-cli
- rethinkdb==2.3.0.post6

0 comments on commit a571079

Please sign in to comment.