Compilation and Installation
Procedure
- Use PuTTY to log in to the server as the root user.
- Install the dependencies.
yum install -y patch
- Go to the installation directory and decompress the installation package.
cd /path/to/rmblast tar -xvf ncbi-blast-2.10.0+-src.tar.gz gunzip isb-2.10.0+-rmblast.patch.gz cd ncbi-blast-2.10.0+-src patch -p1 < ../isb-2.10.0+-rmblast.patch cd c++
- Modify the configuration file.
vim src/build-system/configure
Comment out lines 8236 to 8238 and add lines 8239 to 8243. The modification is as follows:

- Create a compilation file.
./configure --with-mt --without-debug --without-krb5 --without-openssl --with-projects=scripts/projects/rmblastn/project.lst --prefix=/path/to/rmblast/rmblast_install
- Perform the compilation.
make -j64 make install
Parent topic: RMBlast 2.10.0 Porting Guide (Kylin V10)