changeset 8:e03b40a4766d draft

planemo upload for repository https://github.com/peterjc/pico_galaxy/tree/master/tools/seq_composition commit 2c1cc3ac829140d469816ec5e9892f96624270bf-dirty
author peterjc
date Thu, 11 May 2017 12:48:52 -0400
parents 1d1db9a26c65
children 23261458edc7
files tools/seq_composition/README.rst tools/seq_composition/seq_composition.xml
diffstat 2 files changed, 8 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/tools/seq_composition/README.rst	Wed May 10 13:01:58 2017 -0400
+++ b/tools/seq_composition/README.rst	Thu May 11 12:48:52 2017 -0400
@@ -62,6 +62,8 @@
         - Planemo for Tool Shed upload (``.shed.yml``, internal change only).
 v0.0.3  - Python style updates (internal change only).
 v0.0.4  - Depends on Biopython 1.67 via legacy Tool Shed package or bioconda.
+v0.0.5  - Use ``<command detect_errors="aggressive">`` (internal change only).
+        - Single quote command line arguments (internal change only).
 ======= ======================================================================
 
 
--- a/tools/seq_composition/seq_composition.xml	Wed May 10 13:01:58 2017 -0400
+++ b/tools/seq_composition/seq_composition.xml	Thu May 11 12:48:52 2017 -0400
@@ -1,19 +1,15 @@
-<tool id="seq_composition" name="Sequence composition" version="0.0.4">
+<tool id="seq_composition" name="Sequence composition" version="0.0.5">
     <description>Count bases or amino-acids</description>
     <requirements>
         <requirement type="package" version="1.67">biopython</requirement>
     </requirements>
-    <stdio>
-        <!-- Anything other than zero is an error -->
-        <exit_code range="1:" />
-        <exit_code range=":-1" />
-    </stdio>
-    <version_command interpreter="python">seq_composition.py --version</version_command>
-    <command interpreter="python">
-seq_composition.py -o "$output_file"
+    <version_command>
+python $__tool_directory__/seq_composition.py --version</version_command>
+    <command detect_errors="aggressive">
+python $__tool_directory__/seq_composition.py -o '$output_file'
 ##For loop over inputs
 #for i in $input_file
---$i.ext "${i}"
+--$i.ext '${i}'
 #end for
     </command>
     <inputs>