view CADDSuite/galaxyconfigs/tools/SimpleRescorer.xml @ 0:8ce0411aaeb3

Uploaded CADDSuite version 0.94
author marcel
date Sun, 26 Jun 2011 14:01:09 -0400
parents
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="simplerescorer" name="SimpleRescorer" version="0.94">
    <description>rescore docking results</description>
    <command interpreter="bash"><![CDATA[../../SimpleRescorer 
#if str( $rec ) != ''  and str( $rec ) != 'None' :
   -rec "$rec"
#end if
#if str( $rl ) != ''  and str( $rl ) != 'None' :
   -rl "$rl"
#end if
#if str( $ini ) != ''  and str( $ini ) != 'None' :
   -ini "$ini"
#end if
#if str( $i ) != ''  and str( $i ) != 'None' :
   -i "$i"
#end if
#if str( $o ) != ''  and str( $o ) != 'None' :
   -o "$o"
#end if
#if str( $function ) != ''  and str( $function ) != 'None' :
   -function "$function"
#end if
 | tail -n 5
]]></command>
    <inputs>
        <param name="rec" label="receptor pdb-file" optional="false" type="data" format="pdb"/>
        <param name="rl" label="reference-ligand" optional="false" type="data" format="mol2/sdf/drf"/>
        <param name="ini" label="configuration file" optional="true" type="data" format="ini"/>
        <param name="i" label="compounds to be rescored" optional="false" type="data" format="mol2/sdf/drf"/>
        <param name="function" label="scoring function: 'MM', 'PLP' or 'PB'" optional="true" type="select">
            <option value="MM">MM</option>
            <option value="PLP">PLP</option>
            <option value="PB">PB</option>
        </param>
    </inputs>
    <outputs>
        <data name="o" format="mol2/sdf/drf" format_source="i"/>
    </outputs>
    <help>This tool rescores docking output poses.
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).

As input we need:
    * a file containing a protonated protein in pdb-format
    * 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).
    * 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.

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>
</tool>