# HG changeset patch # User peterjc # Date 1486657404 18000 # Node ID a7b40298fc89bf8229a8eff948676bb8be055884 # Parent 269c5826e86f08bc1c5624f14bd3db5586e4d835 planemo upload for repository https://github.com/peterjc/galaxy_blast/tree/master/tools/ncbi_blast_plus commit 96d587fc6f6cab23c597e88a83daf7eecd0d4162-dirty diff -r 269c5826e86f -r a7b40298fc89 tools/ncbi_blast_plus/blastxml_to_tabular.py --- a/tools/ncbi_blast_plus/blastxml_to_tabular.py Fri Feb 03 12:39:01 2017 -0500 +++ b/tools/ncbi_blast_plus/blastxml_to_tabular.py Thu Feb 09 11:23:24 2017 -0500 @@ -60,9 +60,12 @@ However, check this with "diff -b ..." since BLAST+ sometimes includes an extra space character (probably a bug). """ -import sys + + +import os import re -import os +import sys + from optparse import OptionParser if "-v" in sys.argv or "--version" in sys.argv: @@ -75,7 +78,7 @@ except ImportError: from xml.etree import ElementTree as ElementTree else: - from galaxy import eggs + from galaxy import eggs # noqa - ignore flake8 F401 import pkg_resources pkg_resources.require("elementtree") from elementtree import ElementTree diff -r 269c5826e86f -r a7b40298fc89 tools/ncbi_blast_plus/check_no_duplicates.py --- a/tools/ncbi_blast_plus/check_no_duplicates.py Fri Feb 03 12:39:01 2017 -0500 +++ b/tools/ncbi_blast_plus/check_no_duplicates.py Thu Feb 09 11:23:24 2017 -0500 @@ -9,8 +9,9 @@ will return a non-zero error if any duplicate identifiers are found. """ + +import os import sys -import os if "-v" in sys.argv or "--version" in sys.argv: print("v0.0.23") diff -r 269c5826e86f -r a7b40298fc89 tools/ncbi_blast_plus/repository_dependencies.xml --- a/tools/ncbi_blast_plus/repository_dependencies.xml Fri Feb 03 12:39:01 2017 -0500 +++ b/tools/ncbi_blast_plus/repository_dependencies.xml Thu Feb 09 11:23:24 2017 -0500 @@ -1,4 +1,4 @@ <?xml version="1.0"?> <repositories description="This requires the BLAST datatype definitions (e.g. the BLAST XML format)."> - <repository changeset_revision="623a3fbe5340" name="blast_datatypes" owner="devteam" toolshed="https://testtoolshed.g2.bx.psu.edu" /> + <repository changeset_revision="310ec0f47485" name="blast_datatypes" owner="devteam" toolshed="https://testtoolshed.g2.bx.psu.edu" /> </repositories>