1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
==============================
HOW TO INSTALL VELVETOPTIMISER
==============================
1. DOWNLOAD TARBALL
===================
Download the latest .tar.gz file from the website:
http://bioinformatics.net.au/software.velvetoptimiser.shtml
For example:
VelvetOptimiser-2.2.4.tar.gz
2. UNTAR
========
Choose a place to put the software - it comes in it's own directory.
Here we install it as a normal user in our $HOME directory (eg. /home/peter)
% cd $HOME
% sudo tar zxvf /path/to/VelvetOptimiser-2.2.4.tar.gz
You now have it in a folder called $HOME/VelvetOptimiser-2.2.4
3. ADD TO PATH
==============
Add the following to your $HOME/.bashrc file
export PATH=$PATH:$HOME/VelvetOptimiser-2.2.4
You will have to log out and log back in for this to be incorporated.
4. TRY IT
=========
Type:
% VelvetOptimiser.pl
You should see the command line help. For detailed instructions read the
README file:
% less $HOME/VelvetOptimiser-2.2.4/README
|