See the Oxford Nanopore downloads page for instructions.
Conda is a popular environment manager which allows you to install dependencies & software in a fashion that won't break other software you may have installed. While you can run rampart without conda, it requires you to maintain local installations of nodejs and other dependencies. The instructions on this page assume conda has been installed.
See instructions here to install conda on your machine.
Currently rampart must be installed from source. We are working on making this a conda package - stay tuned!
Clone the github repo.
git clone https://github.com/artic-network/rampart.git
(If you don't have git
you can get it via conda install git
.)
Install dependencies etc by creating a conda environment from the environment.yml
file.
cd rampart
conda env create -f environment.yml
conda activate artic-rampart
npm install # installs node (javascript) dependencies
npm run build # builds RAMPART
npm install -g . # makes `rampart` available as a command line program
Check that things work by running rampart --help