Mercurial > repos > marcel > caddsuite_mac10_6
comparison CADDSuite-1.0.1/galaxyconfigs/tools/SimpleRescorer.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="simplerescorer" name="SimpleRescorer" version="1.0.1"> | |
4 <description>rescore docking results</description> | |
5 <command interpreter="bash"><![CDATA[../../SimpleRescorer | |
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( $function ) != '' and str( $function ) != 'None' : | |
22 -function "$function" | |
23 #end if | |
24 | tail -n 5 | |
25 ]]></command> | |
26 <inputs> | |
27 <param name="rec" optional="false" label="receptor pdb-file" type="data" format="pdb"/> | |
28 <param name="rl" optional="false" label="reference-ligand" type="data" format="mol2/sdf/drf"/> | |
29 <param name="ini" optional="true" label="configuration file" type="data" format="ini"/> | |
30 <param name="i" optional="false" label="compounds to be rescored" type="data" format="mol2/sdf/drf"/> | |
31 <param name="function" optional="true" label="scoring function: 'MM', 'PLP' or 'PB'" type="select"> | |
32 <option value="MM">MM</option> | |
33 <option value="PLP">PLP</option> | |
34 <option value="PB">PB</option> | |
35 </param> | |
36 </inputs> | |
37 <outputs> | |
38 <data name="o" format="mol2/sdf/drf" format_source="i"/> | |
39 </outputs> | |
40 <help>This tool rescores docking output poses. | |
41 A scoring function is used to evaluate the binding-free-energy of each compound. This is similar to the scoring done during docking; details depend on the config-file (if one is specified). | |
42 | |
43 As input we need: | |
44 * a file containing a protonated protein in pdb-format | |
45 * 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). | |
46 * 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. | |
47 | |
48 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> | |
49 </tool> |