comparison galaxy_stubs/PocketDetector.xml @ 2:605370bc1def draft default tip

Uploaded
author luis
date Tue, 12 Jul 2016 12:33:33 -0400
parents
children
comparison
equal deleted inserted replaced
1:31013b5cd066 2:605370bc1def
1 <?xml version='1.0' encoding='UTF-8'?>
2 <!--This is a configuration file for the integration of a tools into Galaxy (https://galaxyproject.org/). This file was automatically generated using CTD2Galaxy.-->
3 <!--Proposed Tool Section: [Docking]-->
4 <tool id="PocketDetector" name="PocketDetector" version="1.1.0">
5 <description>detect binding pocket</description>
6 <macros>
7 <token name="@EXECUTABLE@">PocketDetector</token>
8 <import>macros.xml</import>
9 </macros>
10 <expand macro="stdio"/>
11 <expand macro="requirements"/>
12 <command>PocketDetector
13
14 #if $param_rec:
15 -rec $param_rec
16 #end if
17 #if $param_rl:
18 -rl $param_rl
19 #end if
20 #if $param_o:
21 -o $param_o
22 #end if
23 #if $param_option:
24 -option $param_option
25 #end if
26 #if $param_mol_out:
27 -mol_out $param_mol_out
28 #end if
29 </command>
30 <inputs>
31 <param name="param_rec" type="data" format="pdb" optional="False" value="&lt;class 'CTDopts.CTDopts._Null'&gt;" label="receptor pdb-file" help="(-rec) "/>
32 <param name="param_rl" 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="reference ligand" help="(-rl) "/>
33 <param name="param_option" type="data" format="ini" optional="True" value="&lt;class 'CTDopts.CTDopts._Null'&gt;" label="input ini file" help="(-option) "/>
34 </inputs>
35 <expand macro="advanced_options"/>
36 <outputs>
37 <data name="param_o" format="ini"/>
38 <data name="param_mol_out" metadata_source="param_rl" format="input"/>
39 </outputs>
40 <help>This tool tries to detect the binding pocket in which the reference ligand is located.
41 Therefore, probe atoms are placed above the protein surface at positions of relative deep burial. The cluster of probe atoms around the geometric center of the reference ligand is used for the description of the binding pocket.
42
43 As input we need:
44 * a file containing a protonated protein in pdb-format. Furthermore, it should contain only relevant (i.e. strongly bound) water molecules as detected by WaterFinder.
45 * a file containing a reference ligand.
46 This reference ligand should be located in the binding pocket.
47 Supported formats are mol2, sdf or drf (DockResultFile, xml-based).
48
49 Output of this tool is a docking configuration file that contains the description of the detected binding pocket. This file should in following pipeline steps be specified for docking and rescoring.
50
51 </help>
52 </tool>