comparison CADDSuite-1.0.1/galaxyconfigs/tools/TaGRes.xml @ 5:e30a41af9d2b

Uploaded
author marcel
date Tue, 15 Nov 2011 10:53:16 -0500
parents
children
comparison
equal deleted inserted replaced
4:af446ca2d5c6 5:e30a41af9d2b
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" name="TaGRes" version="1.0.1">
4 <description>Target-specific Grid-Rescoring</description>
5 <command interpreter="bash"><![CDATA[../../TaGRes
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( $mod ) != '' and str( $mod ) != 'None' :
19 -mod "$mod"
20 #end if
21 #if str( $tf ) != '' and str( $tf ) != 'None' :
22 -tf "$tf"
23 #end if
24 #if str( $o ) != '' and str( $o ) != 'None' :
25 -o "$o"
26 #end if
27 #if str( $method ) != '' and str( $method ) != 'None' :
28 -method "$method"
29 #end if
30 #if str( $function ) != '' and str( $function ) != 'None' :
31 -function "$function"
32 #end if
33 | tail -n 5
34 ]]></command>
35 <inputs>
36 <param name="rec" optional="false" label="receptor pdb-file" type="data" format="pdb"/>
37 <param name="rl" optional="false" label="reference-ligand" type="data" format="mol2/sdf/drf"/>
38 <param name="ini" optional="true" label="configuration file" type="data" format="ini"/>
39 <param name="i" optional="false" label="compounds to be rescored" type="data" format="mol2/sdf/drf"/>
40 <param name="mod" optional="false" label="model-file generated by TaGRes-train" type="data" format="mod"/>
41 <param name="tf" optional="true" label="Optional: top-scored fraction of compounds not to be rescored" type="text" min="0.000000" max="1.000000" area="true" size="1x5" value=""/>
42 <param name="method" optional="false" label="rescoring type: 'Rescoring3D' or 'Rescoring4D', or 'Rescoring1D'" type="select">
43 <option value="Rescoring3D">Rescoring3D</option>
44 <option value="Rescoring4D">Rescoring4D</option>
45 <option value="Rescoring1D">Rescoring1D</option>
46 </param>
47 <param name="function" optional="true" label="scoring function: 'MM' or 'PLP'" type="select">
48 <option value="MM">MM</option>
49 <option value="PLP">PLP</option>
50 </param>
51 </inputs>
52 <outputs>
53 <data name="o" format="mol2/sdf/drf" format_source="i"/>
54 </outputs>
55 <help>This tool rescores docking output poses using Target-specific Grid-Rescoring.
56 Please generate a regression model for binding-affinity approximation for your protein target by use of the tool TaGRes-train before using this tool.
57 As input TaGRes needs:
58
59 * a file containing a protonated protein in pdb-format
60 * 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).
61 * a file containing the compounds that are to be rescored. Supported formats are mol2, sdf or drf (DockResultFile, xml-based). Those compound should have been docked into the specified protein.
62 * a regression model file as generated by TaGRes-train for same protein target than the one specified here.
63
64 TaGRes will evaluate each given input pose with a scoring function and apply the specified regression model to the score contributions generated this way, resulting in a re-score value, i.e. a (probably) enhanced approximation of the compound's binding-free-energy.
65
66 Output of this tool is a file in the same format as the input ligand file containing all compounds with scores obtained by rescoring in form of a property 're-score'.</help>
67 </tool>