-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
35 additions
and
4 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 |
---|---|---|
@@ -1,5 +1,36 @@ | ||
# Installation | ||
|
||
These installation instructions are streamlined for Linux. The tool SHI7EN is installable on OSX/Windows with a few minor tweaks to this tutorial. This package requires anaconda, which is a system agnostic package and virtual environment manager. Follow the installation instructions for your system at <http://conda.pydata.org/miniconda.html>. | ||
|
||
Once anaconda is installed, create a new virtual environment with python3. | ||
|
||
``` | ||
conda create -n shi7en python=3 | ||
``` | ||
|
||
Now activate the environment. | ||
|
||
``` | ||
pip install git+https://github.com/bhillmann/NINJA-shi7.git --upgrade --no-cache-dir | ||
# OSX, Linux | ||
source activate shi7en | ||
``` | ||
|
||
With the shogun environment activated, install the developmental SHI7EN toolchain. | ||
|
||
``` | ||
# Put condas and pip setuptools in sync | ||
pip install -I --upgrade setuptools | ||
# If you want to use flash | ||
conda install -c bioconda flash | ||
# If you want to use trimmomatic | ||
conda install -c bioconda trimmomatic | ||
# Install shi7en | ||
pip install git+https://github.com/knights-lab/shi7en --upgrade --no-cache-dir | ||
``` | ||
|
||
With the flags provided to pip, copying and pasting any of these commands will redo the installation if a failure happened. | ||
|
||
The final step of the procedure is to add the binary shi7en_trimmer to your path. That binary is available on the release page. |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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