comparison CADDSuite-1.5/galaxyconfigs/tools/BindingDBCleaner.xml @ 15:ac342506cd4e draft

CADDSuite version 1.5
author Marcel Schumann <schumann.marcel@gmail.com>
date Tue, 24 Jul 2012 11:08:49 -0400
parents
children
comparison
equal deleted inserted replaced
14:55c32b55c2c2 15:ac342506cd4e
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="bindingdbcleaner" name="BindingDBCleaner" version="1.5">
4 <description>fix bindingdb.org downloads</description>
5 <command interpreter="bash"><![CDATA[../../BindingDBCleaner
6 #if str( $i ) != '' and str( $i ) != 'None' :
7 -i "$i"
8 #end if
9 #if str( $type ) != '' and str( $type ) != 'None' :
10 -type "$type"
11 #end if
12 #if str( $o ) != '' and str( $o ) != 'None' :
13 -o "$o"
14 #end if
15 #if str( $target ) != '' and str( $target ) != 'None' :
16 -target "$target"
17 #end if
18 | tail -n 5
19 ]]></command>
20 <inputs>
21 <param name="i" optional="false" label="input file" type="data" format="mol2/sdf/drf"/>
22 <param name="type" optional="false" label="type of contained activity values: 'Ki', 'IC50' or 'EC50'" type="select">
23 <option value="IC50">IC50</option>
24 <option value="Ki">Ki</option>
25 <option value="EC50">EC50</option>
26 </param>
27 <param name="target" optional="false" label="binding-DB target name" area="true" type="text" size="1x15"/>
28 </inputs>
29 <outputs>
30 <data name="o" format="mol2/sdf/drf" format_source="i"/>
31 </outputs>
32 <help>This tool cleans up the sd-properties contained in sd-files downloaded from bindingdb.org.
33
34 For all compounds in the input file, the affinity value for the specified target is searched and retained but all other properties are removed. Furthermore, the IC50 or Ki value of each compound is converted to a binding-free-energy value in units of [kJ/mol] that is added as a property-tag named 'binding_free_energy'.
35
36 All compounds in the input file for which no IC50 resp. Ki value for the specified target can found, are ignored and not written to the output file.</help>
37 </tool>