annotate galaxy_stubs/LigCheck.xml @ 2:605370bc1def draft default tip

Uploaded
author luis
date Tue, 12 Jul 2016 12:33:33 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2
605370bc1def Uploaded
luis
parents:
diff changeset
1 <?xml version='1.0' encoding='UTF-8'?>
605370bc1def Uploaded
luis
parents:
diff changeset
2 <!--This is a configuration file for the integration of a tools into Galaxy (https://galaxyproject.org/). This file was automatically generated using CTD2Galaxy.-->
605370bc1def Uploaded
luis
parents:
diff changeset
3 <!--Proposed Tool Section: [Checks and evaluations]-->
605370bc1def Uploaded
luis
parents:
diff changeset
4 <tool id="LigCheck" name="LigCheck" version="1.1.0">
605370bc1def Uploaded
luis
parents:
diff changeset
5 <description>check molecules for errors</description>
605370bc1def Uploaded
luis
parents:
diff changeset
6 <macros>
605370bc1def Uploaded
luis
parents:
diff changeset
7 <token name="@EXECUTABLE@">LigCheck</token>
605370bc1def Uploaded
luis
parents:
diff changeset
8 <import>macros.xml</import>
605370bc1def Uploaded
luis
parents:
diff changeset
9 </macros>
605370bc1def Uploaded
luis
parents:
diff changeset
10 <expand macro="stdio"/>
605370bc1def Uploaded
luis
parents:
diff changeset
11 <expand macro="requirements"/>
605370bc1def Uploaded
luis
parents:
diff changeset
12 <command>LigCheck
605370bc1def Uploaded
luis
parents:
diff changeset
13
605370bc1def Uploaded
luis
parents:
diff changeset
14 #if $param_i:
605370bc1def Uploaded
luis
parents:
diff changeset
15 -i $param_i
605370bc1def Uploaded
luis
parents:
diff changeset
16 #end if
605370bc1def Uploaded
luis
parents:
diff changeset
17 #if $param_o:
605370bc1def Uploaded
luis
parents:
diff changeset
18 -o $param_o
605370bc1def Uploaded
luis
parents:
diff changeset
19 #end if
605370bc1def Uploaded
luis
parents:
diff changeset
20 #if $param_ef:
605370bc1def Uploaded
luis
parents:
diff changeset
21 -ef $param_ef
605370bc1def Uploaded
luis
parents:
diff changeset
22 #end if
605370bc1def Uploaded
luis
parents:
diff changeset
23 #if $param_ri:
605370bc1def Uploaded
luis
parents:
diff changeset
24 -ri $param_ri
605370bc1def Uploaded
luis
parents:
diff changeset
25 #end if
605370bc1def Uploaded
luis
parents:
diff changeset
26 #if $param_ut:
605370bc1def Uploaded
luis
parents:
diff changeset
27 -ut $param_ut
605370bc1def Uploaded
luis
parents:
diff changeset
28 #end if
605370bc1def Uploaded
luis
parents:
diff changeset
29 #if $param_nc:
605370bc1def Uploaded
luis
parents:
diff changeset
30 -nc $param_nc
605370bc1def Uploaded
luis
parents:
diff changeset
31 #end if
605370bc1def Uploaded
luis
parents:
diff changeset
32 #if $param_rm:
605370bc1def Uploaded
luis
parents:
diff changeset
33 -rm $param_rm
605370bc1def Uploaded
luis
parents:
diff changeset
34 #end if
605370bc1def Uploaded
luis
parents:
diff changeset
35 </command>
605370bc1def Uploaded
luis
parents:
diff changeset
36 <inputs>
605370bc1def Uploaded
luis
parents:
diff changeset
37 <param name="param_i" type="data" format="xyz.gz,ac,drf.gz,mol2.gz,mol2,sdf.gz,pdb.gz,ent.gz,mol.gz,hin.gz,sdf,ent,brk.gz,mol,ac.gz,brk,xyz,pdb,hin,drf" optional="False" value="&lt;class 'CTDopts.CTDopts._Null'&gt;" label="input molecule file" help="(-i) "/>
605370bc1def Uploaded
luis
parents:
diff changeset
38 <param name="param_ef" type="float" value="0.5" label="error fraction; print error if fraction of invalid mols is large" help="(-ef) "/>
605370bc1def Uploaded
luis
parents:
diff changeset
39 <param name="param_ri" type="integer" min="0" max="1" optional="True" value="1" label="remove invalid molecules" help="(-ri) "/>
605370bc1def Uploaded
luis
parents:
diff changeset
40 <param name="param_ut" type="integer" min="0" max="1" optional="True" value="0" label="check for unique topologies" help="(-ut) "/>
605370bc1def Uploaded
luis
parents:
diff changeset
41 <param name="param_nc" type="integer" min="0" max="1" optional="True" value="0" label="no not check for unique conformations" help="(-nc) "/>
605370bc1def Uploaded
luis
parents:
diff changeset
42 <param name="param_rm" type="integer" min="0" max="1" optional="True" value="0" label="remove input file when finished" help="(-rm) "/>
605370bc1def Uploaded
luis
parents:
diff changeset
43 </inputs>
605370bc1def Uploaded
luis
parents:
diff changeset
44 <expand macro="advanced_options"/>
605370bc1def Uploaded
luis
parents:
diff changeset
45 <outputs>
605370bc1def Uploaded
luis
parents:
diff changeset
46 <data name="param_o" metadata_source="param_i" format="input"/>
605370bc1def Uploaded
luis
parents:
diff changeset
47 </outputs>
605370bc1def Uploaded
luis
parents:
diff changeset
48 <help>This tool checks all molecules of the given input file for errors. Supported formats are mol2, sdf or drf (DockResultFile, xml-based).
605370bc1def Uploaded
luis
parents:
diff changeset
49
605370bc1def Uploaded
luis
parents:
diff changeset
50 The following checks are done for each molecule:
605370bc1def Uploaded
luis
parents:
diff changeset
51
605370bc1def Uploaded
luis
parents:
diff changeset
52 * bond-lengths may not be completely senseless (i.e. &lt;0.7 or &gt;2.5 Angstroem)
605370bc1def Uploaded
luis
parents:
diff changeset
53 * each 'molecule' in the input file may only contain one actual molecule, i.e. there may be no unconnected atoms or fragments.
605370bc1def Uploaded
luis
parents:
diff changeset
54 * each atom must have a valid assigned element
605370bc1def Uploaded
luis
parents:
diff changeset
55 * the molecule must be protonated (since this is necessary for docking/(re-)scoring).
605370bc1def Uploaded
luis
parents:
diff changeset
56 * 3D coordinates must be present (instead of 2D coordinates; also necessary for docking/(re-)scoring)
605370bc1def Uploaded
luis
parents:
diff changeset
57 * partial charges may not contain completely senseless values (&gt;5 or &lt;-5).
605370bc1def Uploaded
luis
parents:
diff changeset
58 * 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.
605370bc1def Uploaded
luis
parents:
diff changeset
59
605370bc1def Uploaded
luis
parents:
diff changeset
60 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.
605370bc1def Uploaded
luis
parents:
diff changeset
61
605370bc1def Uploaded
luis
parents:
diff changeset
62 </help>
605370bc1def Uploaded
luis
parents:
diff changeset
63 </tool>