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

Uploaded
author marcel
date Tue, 12 Jul 2011 10:53:07 -0400
parents
children af446ca2d5c6
comparison
equal deleted inserted replaced
2:e343494f18fe 3:bb26168c5715
1
2 <!--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.-->
3 <tool id="validator" name="Validator" version="0.95">
4 <description>evaluate quality of a QSAR model</description>
5 <command interpreter="bash"><![CDATA[../../Validator
6 #if str( $i ) != '' and str( $i ) != 'None' :
7 -i "$i"
8 #end if
9 #if str( $dat ) != '' and str( $dat ) != 'None' :
10 -dat "$dat"
11 #end if
12 #if str( $o ) != '' and str( $o ) != 'None' :
13 -o "$o"
14 #end if
15 #if str( $type ) != '' and str( $type ) != 'None' :
16 -type "$type"
17 #end if
18 | tail -n 5
19 ]]></command>
20 <inputs>
21 <param name="i" optional="false" label="input mod-file" type="data" format="mod"/>
22 <param name="dat" optional="false" label="data-file" type="data" format="dat"/>
23 <param name="type" optional="false" label="feature-selection type" type="select">
24 <option value="cross validation">cross validation</option>
25 <option value="bootstrapping">bootstrapping</option>
26 <option value="response permutation">response permutation</option>
27 <option value="evaluate fit to test data">evaluate fit to test data</option>
28 </param>
29 </inputs>
30 <outputs>
31 <data name="o" format="txt"/>
32 </outputs>
33 <help>Validator evaluates the quality of a QSAR model.
34
35 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>
36 </tool>