diff CADDSuite/galaxyconfigs/tools/Validator.xml @ 3:bb26168c5715

Uploaded
author marcel
date Tue, 12 Jul 2011 10:53:07 -0400
parents
children af446ca2d5c6
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CADDSuite/galaxyconfigs/tools/Validator.xml	Tue Jul 12 10:53:07 2011 -0400
@@ -0,0 +1,36 @@
+
+<!--This is a configuration file for the integration of a CADDSuite tool into Galaxy (http://usegalaxy.org). This file was automatically generated using GalaxyConfigGenerator, so do not bother to make too many manual modifications.-->
+<tool id="validator" name="Validator" version="0.95">
+    <description>evaluate quality of a QSAR model</description>
+    <command interpreter="bash"><![CDATA[../../Validator 
+#if str( $i ) != ''  and str( $i ) != 'None' :
+   -i "$i"
+#end if
+#if str( $dat ) != ''  and str( $dat ) != 'None' :
+   -dat "$dat"
+#end if
+#if str( $o ) != ''  and str( $o ) != 'None' :
+   -o "$o"
+#end if
+#if str( $type ) != ''  and str( $type ) != 'None' :
+   -type "$type"
+#end if
+ | tail -n 5
+]]></command>
+    <inputs>
+        <param name="i" optional="false" label="input mod-file" type="data" format="mod"/>
+        <param name="dat" optional="false" label="data-file" type="data" format="dat"/>
+        <param name="type" optional="false" label="feature-selection type" type="select">
+            <option value="cross validation">cross validation</option>
+            <option value="bootstrapping">bootstrapping</option>
+            <option value="response permutation">response permutation</option>
+            <option value="evaluate fit to test data">evaluate fit to test data</option>
+        </param>
+    </inputs>
+    <outputs>
+        <data name="o" format="txt"/>
+    </outputs>
+    <help>Validator evaluates the quality of a QSAR model.
+
+The validation technique to be used for this can selected by '-type'. As input this tools need a model-file as generate by InputReader or FeatureSelector and a data-file generated by InputReader containing the prediction data set. Note that the latter must contain response values so that predictions done by the supplied model can be compared to those values by the validation method.</help>
+</tool>
\ No newline at end of file