Carrot root and DNA VCRU Bioinformatics USDA ARS Vegetable Crops Research Unit

This page was last updated on Saturday, 12-Nov-2016 16:34:38 CST

Installation notes for ncbi-tools version 12_0_0 6/7/2013

Home Page

Prerequisites

None

Installation

  1. $ ver="12_0_0"
  2. $ cd /programinstallers/
  3. $ wget -N ftp://ftp.ncbi.nih.gov/toolbox/ncbi_tools++/CURRENT/ncbi_cxx--$ver.tar.gz
  4. $ tar -zxvf ncbi_cxx--$ver.tar.gz
  5. $ cd ncbi_cxx--$ver
  6. $ ./configure --without-debug --with-mt --without-gui --without-internal --prefix=/usr/local/ncbi-tools
  7. For the following error
    configure: error: Do not know how to build MT-safe with compiler /usr/bin/g++  5.4.0
    see this thread for a fix
    2.95* | 2.96* | 3.* | 4.* | 5.* )
  8. $ make
  9. $ sudo make install
  10. Add to default PATH
    $ sudo nano /etc/profile

    PATH="$PATH:/usr/local/ncbi-tools/bin"
  11. Cleanup
    $ cd .. && rm ncbi_cxx--$ver -rf