Installing MUSCLE¶
We use the sequence alignment tool MUSCLE in one section of the course. This can be installed as follows:
Linux/macOS installation¶
MUSCLE is available through Bioconda (which should already be set up on your machine):
conda install muscle
Windows installation¶
At the time of writing, MUSCLE is not available through Bioconda for Windows.
- Open http://drive5.com/muscle/downloads.htm with your web browser.
- Download the latest Windows Intel i86 binary, currently
muscle3.8.31_i86win32.exe. This will be placed in yourDownloadsdirectory. - In
git bashchange to your home directory with the commandcd. - Create a new directory called
binwith the commandmkdir bin. - Copy the
MUSCLEprogram to this new directory with the commandcp Downloads/muscle3.8.31_i86win32.exe bin/muscle.exe. This creates a new command calledmusclewhich runs the alignment program. - Test that the program can be run by executing the command
musclein the terminal.
In total, the sequence of commands will be:
$ cd
$ mkdir bin
$ cp Downloads/muscle3.8.31_i86win32.exe bin/muscle.exe
$ muscle
Note
The $ sign should not be typed - this indicates the command prompt you will see
on your screen.