# HG changeset patch # User peterjc # Date 1375805094 14400 # Node ID 5693417851ecfd132da5100ac1791984deb3841c # Parent 2c70fed75e5705ceb0fa6bfc5b0c08c22b8f0cb4 Uploaded v0.0.20pre15, try platform selection installation via shell commands. diff -r 2c70fed75e57 -r 5693417851ec ncbi_blast_plus/README.rst --- a/ncbi_blast_plus/README.rst Mon Aug 05 16:03:58 2013 -0400 +++ b/ncbi_blast_plus/README.rst Tue Aug 06 12:04:54 2013 -0400 @@ -115,8 +115,7 @@ - Tweak dependency on blast_datatypes to also work on Test Tool Shed - Adopted standard MIT License. - Development moved to GitHub, https://github.com/peterjc/galaxy_blast - - Auto-installation tries to use the NCBI supplied binaries, falling - back on local compilation from source if required (Dave Bouvier). + - Auto-installation uses the NCBI supplied pre-compiled binaries. ======= ====================================================================== diff -r 2c70fed75e57 -r 5693417851ec ncbi_blast_plus/tool_dependencies.xml --- a/ncbi_blast_plus/tool_dependencies.xml Mon Aug 05 16:03:58 2013 -0400 +++ b/ncbi_blast_plus/tool_dependencies.xml Tue Aug 06 12:04:54 2013 -0400 @@ -3,23 +3,30 @@ - - ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.26/ncbi-blast-2.2.26+-universal-macosx.tar.gz - ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.26/ncbi-blast-2.2.26+-x64-linux.tar.gz - ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.26/ncbi-blast-2.2.26+-ia32-linux.tar.gz - ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.26/ncbi-blast-2.2.26+-ia32-linux.tar.gz + + $INSTALL_DIR - ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.26/ncbi-blast-2.2.26+-src.tar.gz - cd c++ && ./configure --prefix=$INSTALL_DIR/ncbi-blast-2.2.26+ && make && make install - - $INSTALL_DIR/bin + + if [[ "$(uname)" == "Linux" ]]; then export FILENAME="ncbi-blast-2.2.26+-ia32-linux.tar.gz"; fi + if [[ "$(arch)" == "x86_64" ]]; then export FILENAME="ncbi-blast-2.2.26+-x64-linux.tar.gz"; fi + if [[ "$(uname)" == "Darwin" ]]; then export FILENAME="ncbi-blast-2.2.26+-universal-macosx.tar.gz"; fi + + wget ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.26/$FILENAME + tar -zxvf $FILENAME + + + ncbi-blast-2.2.26+/bin + $INSTALL_DIR -These links provide information for building the NCBI Blast+ package in most environments. +Downloads the precompiled 32bit Linux, 64bit Linux, or Mac OS X BLAST+ +binaries from the NCBI, which is faster than performing a local compliation, +avoids any issues with build dependencies, and is more reproducible between +installations as there is no variability from the compiler or library versions. -System requirements +For more details, see: http://blast.ncbi.nlm.nih.gov/Blast.cgi?CMD=Web&PAGE_TYPE=BlastDocs&DOC_TYPE=Download