Previous changeset 21:6902315b7730 (2013-08-05) Next changeset 23:2c70fed75e57 (2013-08-05) |
Commit message:
Uploaded v0.0.20pre13, auto-installation script from Dave Bouvier |
modified:
ncbi_blast_plus/README.rst ncbi_blast_plus/tool_dependencies.xml |
b |
diff -r 6902315b7730 -r 9b8b2817f411 ncbi_blast_plus/README.rst --- a/ncbi_blast_plus/README.rst Mon Aug 05 12:39:59 2013 -0400 +++ b/ncbi_blast_plus/README.rst Mon Aug 05 14:29:58 2013 -0400 |
b |
@@ -115,6 +115,8 @@ - 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). ======= ====================================================================== |
b |
diff -r 6902315b7730 -r 9b8b2817f411 ncbi_blast_plus/tool_dependencies.xml --- a/ncbi_blast_plus/tool_dependencies.xml Mon Aug 05 12:39:59 2013 -0400 +++ b/ncbi_blast_plus/tool_dependencies.xml Mon Aug 05 14:29:58 2013 -0400 |
b |
@@ -3,31 +3,24 @@ <package name="blast+" version="2.2.26+"> <install version="1.0"> <actions> - <action type="download_by_url"> + <action type="download_binary"> + <url_template os="darwin">ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.26/ncbi-blast-2.2.26+-universal-macosx.tar.gz</url_template> <url_template os="linux" architecture="x86_64">ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.26/ncbi-blast-2.2.26+-x64-linux.tar.gz</url_template> - <url_template os="linux" architecture="i386">ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.26/ncbi-blast-2.2.26+-ia32-linux.tar.gz</url_template> + <url_template os="linux" architecture="ia32">ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.26/ncbi-blast-2.2.26+-ia32-linux.tar.gz</url_template> <url_template os="linux" architecture="i686">ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.26/ncbi-blast-2.2.26+-ia32-linux.tar.gz</url_template> - <url_template os="darwin">ftp://ftp.ncbi.nlm.nih.gov/blast/executables/blast+/2.2.26/ncbi-blast-2.2.26+-universal-macosx.tar.gz</url_template> </action> - <action type="move_directory_files"> - <!-- Galaxy will have changed directory into ncbi-blast-2.2.26+/ --> - <source_directory>bin</source_directory> - <destination_directory>$INSTALL_DIR</destination_directory> - </action> + <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++ && ./configure --prefix=$INSTALL_DIR/ncbi-blast-2.2.26+ && make && make install</action> <action type="set_environment"> - <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR</environment_variable> + <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable> </action> </actions> </install> <readme> -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. +These links provide information for building the NCBI Blast+ package in most environments. -For more details, see: +System requirements http://blast.ncbi.nlm.nih.gov/Blast.cgi?CMD=Web&PAGE_TYPE=BlastDocs&DOC_TYPE=Download </readme> </package> </tool_dependency> - |