changeset 12:cd467dd9e2ff draft

Uploaded v0.0.20 preview 3, use the NCBI provided 64bit Linux binaries.
author peterjc
date Mon, 29 Apr 2013 10:18:29 -0400
parents 579acb6fb8a8
children 462d362d0b8b
files tools/ncbi_blast_plus/ncbi_blast_plus.txt tools/ncbi_blast_plus/tool_dependencies.xml
diffstat 2 files changed, 16 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/tools/ncbi_blast_plus/ncbi_blast_plus.txt	Mon Apr 29 09:27:48 2013 -0400
+++ b/tools/ncbi_blast_plus/ncbi_blast_plus.txt	Mon Apr 29 10:18:29 2013 -0400
@@ -102,6 +102,8 @@
           fall-back in case the return code is not set properly).
         - Clearer naming of output files.
 v0.0.20 - Added unit tests for BLASTN and TBLASTX.
+        - Automatic installation via the Tool Shed now uses the NCBI provided
+          precompiled binaries for 64bit Linux, rather than compiling locally.
 
 
 Developers
--- a/tools/ncbi_blast_plus/tool_dependencies.xml	Mon Apr 29 09:27:48 2013 -0400
+++ b/tools/ncbi_blast_plus/tool_dependencies.xml	Mon Apr 29 10:18:29 2013 -0400
@@ -3,17 +3,26 @@
     <package name="blast+" version="2.2.26+">
         <install version="1.0">
             <actions>
-                <action type="download_by_url">ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.26/ncbi-blast-2.2.26+-src.tar.gz</action>
-                <action type="shell_command">cd c++ &amp;&amp; ./configure --prefix=$INSTALL_DIR &amp;&amp; make &amp;&amp; make install</action>
+                <action type="download_by_url">ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.26/ncbi-blast-2.2.26+-x64-linux.tar.gz</action>
+                <action type="move_directory_files">
+                    <source_directory>ncbi-blast-2.2.26+/bin</source_directory>
+                    <destination_directory>$INSTALL_DIR</destination_directory>
+                </action>
                 <action type="set_environment">
-                    <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable>
+                    <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR</environment_variable>
                 </action>
             </actions>
         </install>
         <readme>
-These links provide information for building the NCBI Blast+ package in most environments.
+Downloads the precompiled 64bit Linux 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
+If/when the Galaxy installation framework allows for 32bit versus 64bit,
+or different operating system, the NCBI binaries cover the main cases.
+
+For more details, see:
 http://blast.ncbi.nlm.nih.gov/Blast.cgi?CMD=Web&amp;PAGE_TYPE=BlastDocs&amp;DOC_TYPE=Download
         </readme>
     </package>