diff CADDSuite/galaxyconfigs/tools/IMGDock.xml @ 3:bb26168c5715

Uploaded
author marcel
date Tue, 12 Jul 2011 10:53:07 -0400
parents
children af446ca2d5c6
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/CADDSuite/galaxyconfigs/tools/IMGDock.xml	Tue Jul 12 10:53:07 2011 -0400
@@ -0,0 +1,47 @@
+
+<!--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="imeedydock" name="IMGDock" version="0.95">
+    <description>Iterative Multi-Greedy Docking</description>
+    <command interpreter="bash"><![CDATA[../../IMGDock 
+#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( $grd ) != ''  and str( $grd ) != 'None' :
+   -grd "$grd"
+#end if
+ | tail -n 5
+]]></command>
+    <inputs>
+        <param name="rec" optional="false" label="receptor pdb-file" type="data" format="pdb"/>
+        <param name="rl" optional="false" label="reference-ligand" type="data" format="mol2/sdf/drf"/>
+        <param name="ini" optional="true" label="configuration file" type="data" format="ini"/>
+        <param name="i" optional="false" label="compounds to be docked" type="data" format="mol2/sdf/drf"/>
+        <param name="grd" optional="false" label="ScoreGrid file" type="data" format="grd.tgz"/>
+    </inputs>
+    <outputs>
+        <data name="o" format="mol2/sdf/drf" format_source="i"/>
+    </outputs>
+    <help>IMGDock docks compounds into the binding pocket of a receptor using an iterative multi-greedy approach.
+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 score-grid file generated by GridBuilder. This grid must have been precalculated for the same receptor and reference ligand as those that are to be used here.
+    * a file containing the compounds that are to be docked. Supported formats are mol2, sdf or drf (DockResultFile, xml-based). These molecules must have been assigned 3D coordinates (e.g. by Ligand3DGenerator) and should have been checked for errors using LigCheck.
+
+Output of this tool is a file containing all compounds docked into the binding pocket, with a property-tag named 'score' indicating the score obtained for each compound.
+
+Tip: If you want to parallelize docking, use LigandFileSplitter to separate your input file containing the compounds to be docked into several batches, dock each batch with this tool and merge the output files with DockResultMerger.</help>
+</tool>
\ No newline at end of file