我要评分
获取效率
正确性
完整性
易理解

Installing BCFtools

Procedure

  1. Use PuTTY to log in to the server as the root user.
  2. Use the SFTP tool to upload the BCFtools installation package to the /path/to/AUGUSTUS directory.
  3. Run the following command to decompress the package:

    cd /path/to/AUGUSTUS && tar -zxf bcftools-1.11.tar.gz

  4. Run the following command to rename and go to the installation directory:

    mv bcftools-1.11 bcftools && cd bcftools

  5. Run the following commands to perform configuration:

    autoheader

    autoconf

    sed -i 's/\-O2/\-O3 -march=armv8.2-a -mtune=tsv110/g' `grep -lr "\-O2" ./`

    CC=`which gcc` ./configure --prefix=/path/to/AUGUSTUS/bcftools

  6. Run the following commands to perform compilation and installation:

    make -j 16

    make install