Repository 'blastxml_to_top_descr'
hg clone https://toolshed.g2.bx.psu.edu/repos/peterjc/blastxml_to_top_descr

Changeset 7:a7add03a44fd (2013-04-17)
Previous changeset 6:8a0771c5e236 (2013-04-17) Next changeset 8:a8ef75aab1f9 (2013-07-24)
Commit message:
Uploaded v0.0.6, checks return code for error handling
modified:
tools/ncbi_blast_plus/blastxml_to_top_descr.txt
tools/ncbi_blast_plus/blastxml_to_top_descr.xml
b
diff -r 8a0771c5e236 -r a7add03a44fd tools/ncbi_blast_plus/blastxml_to_top_descr.txt
--- a/tools/ncbi_blast_plus/blastxml_to_top_descr.txt Wed Apr 17 10:53:58 2013 -0400
+++ b/tools/ncbi_blast_plus/blastxml_to_top_descr.txt Wed Apr 17 11:46:03 2013 -0400
b
@@ -20,7 +20,6 @@
 'blast_datatypes' dependency.
 
 
-
 Manual Installation
 ===================
 
@@ -53,6 +52,7 @@
 v0.0.3 - Include the test files required to run the unit tests
 v0.0.4 - Quote filenames in case they contain spaces (internal change)
 v0.0.5 - Include number of queries with BLAST matches in stdout (peek text)
+v0.0.6 - Check for errors via the script's return code (internal change)
 
 
 Developers
b
diff -r 8a0771c5e236 -r a7add03a44fd tools/ncbi_blast_plus/blastxml_to_top_descr.xml
--- a/tools/ncbi_blast_plus/blastxml_to_top_descr.xml Wed Apr 17 10:53:58 2013 -0400
+++ b/tools/ncbi_blast_plus/blastxml_to_top_descr.xml Wed Apr 17 11:46:03 2013 -0400
b
@@ -1,9 +1,14 @@
-<tool id="blastxml_to_top_descr" name="BLAST top hit descriptions" version="0.0.5">
+<tool id="blastxml_to_top_descr" name="BLAST top hit descriptions" version="0.0.6">
     <description>Make a table from BLAST XML</description>
     <version_command interpreter="python">blastxml_to_top_descr.py --version</version_command>
     <command interpreter="python">
       blastxml_to_top_descr.py "${blastxml_file}" "${tabular_file}" ${topN}
     </command>
+    <stdio>
+        <!-- Assume anything other than zero is an error -->
+        <exit_code range="1:" />
+        <exit_code range=":-1" />
+    </stdio>
     <inputs>
         <param name="blastxml_file" type="data" format="blastxml" label="BLAST results as XML"/> 
  <param name="topN" type="integer" min="1" max="100" optional="false" label="Number of descriptions" value="3"/>