-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
nextstrain installation and environment
- Loading branch information
Showing
2 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |