diff CADDSuite/galaxyconfigs/tools/LigCheck.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/LigCheck.xml	Tue Jul 12 10:53:07 2011 -0400
@@ -0,0 +1,45 @@
+
+<!--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="ligcheck" name="LigCheck" version="0.95">
+    <description>check molecules for errors</description>
+    <command interpreter="bash"><![CDATA[../../LigCheck 
+#if str( $i ) != ''  and str( $i ) != 'None' :
+   -i "$i"
+#end if
+#if str( $o ) != ''  and str( $o ) != 'None' :
+   -o "$o"
+#end if
+#if str( $ef ) != ''  and str( $ef ) != 'None' :
+   -ef "$ef"
+#end if
+#if str( $ri ) != ''  and str( $ri ) != 'None' :
+   -ri
+#end if
+#if str( $ut ) != ''  and str( $ut ) != 'None' :
+   -ut
+#end if
+ | tail -n 5
+]]></command>
+    <inputs>
+        <param name="i" optional="false" label="input molecule file" type="data" format="mol2/sdf/drf"/>
+        <param name="ef" optional="true" label="Optional: error fraction; print error if fraction of invalid mols is larger" type="text" area="true" size="1x5" value="0.5"/>
+        <param name="ri" optional="true" label="remove invalid molecules." type="boolean" truevalue="true" falsevalue="" checked="true"/>
+        <param name="ut" optional="true" label="check for unique topologies (default: check only for unique conformation)" type="boolean" truevalue="true" falsevalue=""/>
+    </inputs>
+    <outputs>
+        <data name="o" format="mol2/sdf/drf" format_source="i"/>
+    </outputs>
+    <help>This tool checks all molecules of the given input file for errors. Supported formats are mol2, sdf or drf (DockResultFile, xml-based).
+
+The following checks are done for each molecule:
+
+    * bond-lengths may not be completely senseless (i.e. &lt;0.7 or &gt;2.5 Angstroem)
+    * each 'molecule' in the input file may only contain one actual molecule, i.e. there may be no unconnected atoms or fragments.
+    * each atom must have a valid assigned element
+    * the molecule must be protonated (since this is necessary for docking/(re-)scoring).
+    * 3D coordinates must be present (instead of 2D coordinates; also necessary for docking/(re-)scoring)
+    * partial charges may not contain completely senseless values (&gt;5 or &lt;-5).
+    * each conformation should appear only once within the given file, otherwise it is rejected and not written to the output file. However, if option '-ut' is used, molecules will instead be checked for unique topologies.
+
+If option '-ri' is used, only those molecules that pass all those tests are written to the output file. If this option is not used, all molecules are written to output containing a property 'score_ligcheck' with a value of 1 if the molecule passed all tests or with a value of 0 if it did not pass them.</help>
+</tool>
\ No newline at end of file