-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/WGLab/NanoCaller
removing unnecessary files
- Loading branch information
Showing
1 changed file
with
22 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,22 @@ | ||
# Installation | ||
|
||
NanoCaller has been developed and tested to work with Linux OS; we do not recommend using Windows or Mac OS. NanoCaller does not require a GPU or any other special hardware to run. | ||
There are two ways to install and run NanoCaller, via docker or conda. | ||
## Conda Installation | ||
First, install Miniconda, a minimal installation of Anaconda, which is much smaller and has a faster installation. | ||
Note that this version is meant for Linux below, macOS and Windows have a different script: | ||
|
||
``` | ||
curl -O https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh | ||
bash Miniconda3-latest-Linux-x86_64.sh | ||
``` | ||
|
||
Go through all the prompts (installation in `$HOME` is recommended). After Anaconda is installed successfully, simply run: | ||
|
||
``` | ||
git clone https://github.com/WGLab/NanoCaller.git | ||
cd NanoCaller | ||
conda env create -f environment.yml | ||
conda activate NanoCaller | ||
``` | ||
The installation should take about 10 minutes, including the installation of Miniconda. |