Rate This Document
Findability
Accuracy
Completeness
Readability

Compiling and Installing BCFtools

Procedure

  1. Use PuTTY to log in to the server as the root user.
  2. Install the dependencies.
    yum install zlib-devel bzip2 bzip2-devel xz-devel libcurl-devel -y
  3. Decompress the installation package.
    tar jxvf bcftools-1.10.2.tar.bz2
  4. Go to the directory generated after the decompression.
    cd bcftools-1.10.2
  5. Perform the configuration.
    ./configure --prefix=/path/to/BCFTOOLS/Install CFLAGS="-O3 -march=armv8.2-a"
  6. Perform the compilation and installation.
    make -j 32
    make install
  7. Add the environment variable.
    export PATH=/path/to/BCFTOOLS/Install/bin:$PATH