Mercurial > repos > luis > ball
diff galaxy_stubs/Validator.xml @ 2:605370bc1def draft default tip
Uploaded
author | luis |
---|---|
date | Tue, 12 Jul 2016 12:33:33 -0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/galaxy_stubs/Validator.xml Tue Jul 12 12:33:33 2016 -0400 @@ -0,0 +1,51 @@ +<?xml version='1.0' encoding='UTF-8'?> +<!--This is a configuration file for the integration of a tools into Galaxy (https://galaxyproject.org/). This file was automatically generated using CTD2Galaxy.--> +<!--Proposed Tool Section: [QuEasy (QSAR)]--> +<tool id="Validator" name="Validator" version="1.1.0"> + <description>evaluate quality of a QSAR model </description> + <macros> + <token name="@EXECUTABLE@">Validator</token> + <import>macros.xml</import> + </macros> + <expand macro="stdio"/> + <expand macro="requirements"/> + <command>Validator + +#if $param_i: + -i $param_i +#end if +#if $param_dat: + -dat $param_dat +#end if +#if $param_o: + -o $param_o +#end if +#if $param_type: + -type + #if " " in str($param_type): + "$param_type" + #else + $param_type + #end if +#end if +</command> + <inputs> + <param name="param_i" type="data" format="mod" optional="False" value="<class 'CTDopts.CTDopts._Null'>" label="input mod-file" help="(-i) "/> + <param name="param_dat" type="data" format="dat" optional="False" value="<class 'CTDopts.CTDopts._Null'>" label="data-file" help="(-dat) "/> + <param name="param_type" type="select" optional="False" value="<class 'CTDopts.CTDopts._Null'>" label="feature-selection type" help="(-type) "> + <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> + <expand macro="advanced_options"/> + <outputs> + <data name="param_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>