# HG changeset patch # User peterjc # Date 1670407123 0 # Node ID 2bca27f8abb2593e55f8a4010f3e509555818dec # Parent 38fe3aaa15aa864f05e783bc1ed27dc2f56c4d3f v0.3.0 - Updated to BLAST+ 2.9.0 via conda; removed legacy tool packages. diff -r 38fe3aaa15aa -r 2bca27f8abb2 tools/blast_rbh/best_hits.py --- a/tools/blast_rbh/best_hits.py Thu Sep 10 11:13:56 2020 +0000 +++ b/tools/blast_rbh/best_hits.py Wed Dec 07 09:58:43 2022 +0000 @@ -10,7 +10,6 @@ Please cite the author per instructions in https://github.com/peterjc/galaxy_blast/blob/master/tools/blast_rbh/README.rst """ - import sys tie_warning = 0 diff -r 38fe3aaa15aa -r 2bca27f8abb2 tools/blast_rbh/blast_rbh.py --- a/tools/blast_rbh/blast_rbh.py Thu Sep 10 11:13:56 2020 +0000 +++ b/tools/blast_rbh/blast_rbh.py Wed Dec 07 09:58:43 2022 +0000 @@ -12,22 +12,19 @@ definition file. This is available as a package on the Galaxy Tool Shed: http://toolshed.g2.bx.psu.edu/view/peterjc/blast_rbh """ - # TODO - Output more columns, e.g. pident, qcovs, descriptions? # TODO - Use new -qcov_hsp_perc option in BLAST+ 2.2.30 to filter # results, rather than doing minimum HSP coverage in Python. # [Not doing this right now as would break on older BLAST+] - from __future__ import print_function import os import shutil import sys import tempfile -import best_hits +from optparse import OptionParser - -from optparse import OptionParser +import best_hits def run(cmd):