comparison CADDSuite/galaxyconfigs/tools/TaGRes-train.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="tagres-train" name="TaGRes-train" version="0.95">
4 <description>Target-specific Grid-Rescoring, training</description>
5 <command interpreter="bash"><![CDATA[../../TaGRes-train
6 #if str( $rec ) != '' and str( $rec ) != 'None' :
7 -rec "$rec"
8 #end if
9 #if str( $rl ) != '' and str( $rl ) != 'None' :
10 -rl "$rl"
11 #end if
12 #if str( $ini ) != '' and str( $ini ) != 'None' :
13 -ini "$ini"
14 #end if
15 #if str( $i ) != '' and str( $i ) != 'None' :
16 -i "$i"
17 #end if
18 #if str( $o ) != '' and str( $o ) != 'None' :
19 -o "$o"
20 #end if
21 #if str( $method ) != '' and str( $method ) != 'None' :
22 -method "$method"
23 #end if
24 #if str( $function ) != '' and str( $function ) != 'None' :
25 -function "$function"
26 #end if
27 #if str( $exp ) != '' and str( $exp ) != 'None' :
28 -exp "$exp"
29 #end if
30 | tail -n 5
31 ]]></command>
32 <inputs>
33 <param name="rec" optional="false" label="receptor pdb-file" type="data" format="pdb"/>
34 <param name="rl" optional="false" label="reference-ligand" type="data" format="mol2/sdf/drf"/>
35 <param name="ini" optional="true" label="configuration file" type="data" format="ini"/>
36 <param name="i" optional="false" label="training compound data set" type="data" format="mol2/sdf/drf"/>
37 <param name="method" optional="false" label="rescoring type: 'Rescoring3D' or 'Rescoring4D', or 'Rescoring1D'" type="select">
38 <option value="Rescoring3D">Rescoring3D</option>
39 <option value="Rescoring4D">Rescoring4D</option>
40 <option value="Rescoring1D">Rescoring1D</option>
41 </param>
42 <param name="function" optional="true" label="scoring function: 'MM' or 'PLP'" type="select">
43 <option value="MM">MM</option>
44 <option value="PLP">PLP</option>
45 </param>
46 <param name="exp" optional="false" label="property-tag name containing experimentally determined binding-free-energies" area="true" type="text" size="1x15" value="binding_free_energy"/>
47 </inputs>
48 <outputs>
49 <data name="o" format="mod"/>
50 </outputs>
51 <help>This tool generates a model for Target-specific Grid-Rescoring (TaGRes).
52 As input we need:
53
54 * a file containing a protonated protein in pdb-format
55 * a file containing a reference ligand. This reference ligand should be located in the binding pocket. Supported formats are mol2, sdf or drf (DockResultFile, xml-based).
56 * a file containing a training data set, i.e. compounds whose binding-free-energy to the specified target is known and annotated in this file. Those compounds should have been docked into the specified protein.
57
58 A scoring function is applied and an interaction-grid is thereby generated for each input compound. Together with the known binding-free-energy, those grids are used to automatically search for the best linear or non-linear regression model that can approximate the binding-free-energy. After this model has been generated, you can pass it to the tool TaGRes and rescore (different) compounds with it.
59
60 The output of TaGRes-train is a file that contains the generated regression model. However, if no model with suitable prediction quality was found, an error will be shown and no model-file will be written.</help>
61 </tool>