This archive contains a C++ command line application to demonstrate how to
access the BLAST Web Service at NCBI.

Requirements:
Latest version of the NCBI C++ toolkit
(http://www.ncbi.nlm.nih.gov/books/bv.fcgi?rid=toolkit.TOC&depth=2)

Note:
This program has only been tested on linux.

Installation instructions
-------------------------
1. Download latest version of NCBI C++ toolkit
   svn co https://svn.ncbi.nlm.nih.gov/repos/toolkit/trunk/c++
2. Define NCBI environment variable as the directory where the toolkit
will be installed
4. Configure, build, and install the toolkit (use projects.lst provided in this
   archive)
   4.1 cd c++
   4.2 ./configure --with-build-root=Debug --with-projects=../projects.lst
   4.3 (cd Debug/build; make all_p)
   4.4 scripts/install.sh $NCBI/c++
   4.5 Debug/build/install.sh $NCBI/c++ --with-object-files
5. Return to directory where this sample was unpacked
6. Run make to create soap_client executable file

