view CADDSuite/galaxyconfigs/tools/Validator.xml @ 4:af446ca2d5c6

Uploaded
author marcel
date Fri, 02 Sep 2011 08:54:17 -0400
parents bb26168c5715
children
line wrap: on
line source


<!--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.9.6">
    <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>