Previous changeset 1:ec31e95c56e1 (2013-04-29) Next changeset 3:bf634ebee84c (2013-05-20) |
Commit message:
Uploaded v0.0.6 |
modified:
tools/ncbi_blast_plus/blastxml_to_top_descr.txt tools/ncbi_blast_plus/blastxml_to_top_descr.xml |
b |
diff -r ec31e95c56e1 -r 58359ce5bde9 tools/ncbi_blast_plus/blastxml_to_top_descr.txt --- a/tools/ncbi_blast_plus/blastxml_to_top_descr.txt Mon Apr 29 13:08:52 2013 -0400 +++ b/tools/ncbi_blast_plus/blastxml_to_top_descr.txt Mon Apr 29 13:09:07 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 ec31e95c56e1 -r 58359ce5bde9 tools/ncbi_blast_plus/blastxml_to_top_descr.xml --- a/tools/ncbi_blast_plus/blastxml_to_top_descr.xml Mon Apr 29 13:08:52 2013 -0400 +++ b/tools/ncbi_blast_plus/blastxml_to_top_descr.xml Mon Apr 29 13:09:07 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"/> |