diff tools/ncbi_blast_plus/blastxml_to_tabular.py @ 24:c877294f8025 draft

Fixed tool_dependencies.xml
author peterjc
date Mon, 09 Jul 2018 10:08:16 -0400
parents 31e517610e1f
children e25d3acf6e68
line wrap: on
line diff
--- a/tools/ncbi_blast_plus/blastxml_to_tabular.py	Sat Jun 30 17:22:46 2018 -0400
+++ b/tools/ncbi_blast_plus/blastxml_to_tabular.py	Mon Jul 09 10:08:16 2018 -0400
@@ -178,7 +178,7 @@
     context = iter(context)
     # get the root element
     try:
-        event, root = context.next()
+        event, root = next(context)
     except Exception:
         sys.exit("Invalid data format.")
     for event, elem in context: