# HG changeset patch # User peterjc # Date 1654604144 0 # Node ID 0e3cf9594bb78d58d2f955a8388bd82b3b7b1d6c # Parent acf4e47b734cea8cd712535a152837fcb8a29823 Update with window size fix diff -r acf4e47b734c -r 0e3cf9594bb7 tools/ncbi_blast_plus/README.rst --- a/tools/ncbi_blast_plus/README.rst Tue Mar 29 14:54:02 2022 +0000 +++ b/tools/ncbi_blast_plus/README.rst Tue Jun 07 12:15:44 2022 +0000 @@ -136,6 +136,8 @@ ============== =============================================================== Version Changes -------------- --------------------------------------------------------------- +2.10.1+galaxy2 - Fixed ``dc-megablast`` option in ``ncbi_blastn_wrapper.xml`` + wrapper from inserting ``-window_size`` twice when executing. 2.10.1+galaxy1 - Add tool `NCBI get species taxids` that wraps NCBI's `get_species_taxids.sh` script (https://www.ncbi.nlm.nih.gov/books/NBK546209/). diff -r acf4e47b734c -r 0e3cf9594bb7 tools/ncbi_blast_plus/blastxml_to_tabular.xml --- a/tools/ncbi_blast_plus/blastxml_to_tabular.xml Tue Mar 29 14:54:02 2022 +0000 +++ b/tools/ncbi_blast_plus/blastxml_to_tabular.xml Tue Jun 07 12:15:44 2022 +0000 @@ -3,6 +3,9 @@ ncbi_macros.xml + + python + python $__tool_directory__/blastxml_to_tabular.py --version python $__tool_directory__/blastxml_to_tabular.py -o '$tabular_file' diff -r acf4e47b734c -r 0e3cf9594bb7 tools/ncbi_blast_plus/ncbi_blastn_wrapper.xml --- a/tools/ncbi_blast_plus/ncbi_blastn_wrapper.xml Tue Mar 29 14:54:02 2022 +0000 +++ b/tools/ncbi_blast_plus/ncbi_blastn_wrapper.xml Tue Jun 07 12:15:44 2022 +0000 @@ -30,7 +30,7 @@ @ADV_QCOV_HSP_PERC@ ## only use window size if dc-megablast mode is used #if ($blast_type == "dc-megablast"): --window_size @ADV_WINDOW_SIZE@ + @ADV_WINDOW_SIZE@ #end if @ADV_GAPOPEN@ @ADV_GAPEXTEND@ diff -r acf4e47b734c -r 0e3cf9594bb7 tools/ncbi_blast_plus/ncbi_macros.xml --- a/tools/ncbi_blast_plus/ncbi_macros.xml Tue Mar 29 14:54:02 2022 +0000 +++ b/tools/ncbi_blast_plus/ncbi_macros.xml Tue Jun 07 12:15:44 2022 +0000 @@ -1,6 +1,6 @@ 2.10.1 - 1 + 2 16.10 @@ -10,6 +10,7 @@ blast + @BINARY@ -version diff -r acf4e47b734c -r 0e3cf9594bb7 tools/ncbi_blast_plus/ncbi_makeblastdb.xml --- a/tools/ncbi_blast_plus/ncbi_makeblastdb.xml Tue Mar 29 14:54:02 2022 +0000 +++ b/tools/ncbi_blast_plus/ncbi_makeblastdb.xml Tue Jun 07 12:15:44 2022 +0000 @@ -4,7 +4,9 @@ makeblastdb ncbi_macros.xml - + + python +