diff tools/protein_analysis/tmhmm2.xml @ 18:eb6ac44d4b8e draft

Suite v0.2.8, record Promoter 2 verion + misc internal updates
author peterjc
date Tue, 01 Sep 2015 09:56:36 -0400
parents e6cc27d182a8
children a19b3ded8f33
line wrap: on
line diff
--- a/tools/protein_analysis/tmhmm2.xml	Fri Nov 21 08:19:09 2014 -0500
+++ b/tools/protein_analysis/tmhmm2.xml	Tue Sep 01 09:56:36 2015 -0400
@@ -1,18 +1,22 @@
-<tool id="tmhmm2" name="TMHMM 2.0" version="0.0.13">
+<tool id="tmhmm2" name="TMHMM 2.0" version="0.0.14">
     <description>Find transmembrane domains in protein sequences</description>
     <!-- If job splitting is enabled, break up the query file into parts -->
     <!-- Using 2000 chunks meaning 4 threads doing 500 each is ideal -->
     <parallelism method="basic" split_inputs="fasta_file" split_mode="to_size" split_size="2000" merge_outputs="tabular_file"></parallelism>
+    <requirements>
+        <requirement type="binary">tmhmm</requirement>
+        <requirement type="package">tmhmm</requirement>
+    </requirements>
+    <stdio>
+        <!-- Anything other than zero is an error -->
+        <exit_code range="1:" />
+        <exit_code range=":-1" />
+    </stdio>
     <command interpreter="python">
       tmhmm2.py "\$GALAXY_SLOTS" $fasta_file $tabular_file
       ##If the environment variable isn't set, get "", and the python wrapper
       ##defaults to four threads.
     </command>
-    <stdio>
-        <!-- Anything other than zero is an error -->
-        <exit_code range="1:" />
-        <exit_code range=":-1" />
-    </stdio>
     <inputs>
         <param name="fasta_file" type="data" format="fasta" label="FASTA file of protein sequences"/> 
         <!--
@@ -25,9 +29,6 @@
     <outputs>
         <data name="tabular_file" format="tabular" label="TMHMM results" />
     </outputs>
-    <requirements>
-        <requirement type="binary">tmhmm</requirement>
-    </requirements>
     <tests>
         <test>
             <param name="fasta_file" value="four_human_proteins.fasta" ftype="fasta"/>