Installing Bamtools
Procedure
- Use PuTTY to log in to the server as the root user.
- Use the SFTP tool to upload the Bamtools installation package to the /path/to/AUGUSTUS directory.
- Run the following command to decompress the package:
cd /path/to/AUGUSTUS && tar -zxf bamtools-2.5.0.tar.gz
- Run the following command to rename and go to the installation directory:
mv bamtools-2.5.0 bamtools && cd bamtools
- Run the following commands to perform configuration:
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=../ ..
- Run the following commands to perform compilation and installation:
make -j 16
make install
Parent topic: Configuring the Compilation Environment