Installing Bowtie 2
- Use PuTTY to log in to the server as the root user.
- Delete the Bowtie 2 preinstalled by HUMAnN:
rm -rf /path/to/python-3.9.6/bin/bowtie2*
- Download the Bowtie 2 installation package.
http://sourceforge.net/projects/bowtie-bio/files/bowtie2/2.4.2/bowtie2-2.4.2-linux-aarch64.zip
- Decompress the installation package.
unzip bowtie2-2.4.2-linux-aarch64.zip
- Edit the configuration file.
- Open the configuration file.
vi /etc/profile
- Press i to enter the insert mode and add the Bowtie 2 path.
export PATH=/home/gcc-9.3.1-2020.12-aarch64-linux/bin:/usr/local/python-3.9.6/bin:/home/bowtie2-2.4.2-linux-aarch64:$PATH
- Press Esc, type :wq!, and press Enter to save the file and exit.
- Open the configuration file.
- Make the configuration take effect.
source /etc/profile
- Check whether Bowtie 2 is successfully installed.
bowtie2 -h
The installation is successful if the following information is displayed:

Parent topic: Compilation and Installation