comparison macros.xml @ 3:4cc9d85c3bae draft default tip

"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/chemicaltoolbox/fpocket/ commit 06eccf2513b3394e79606f320e019be4793386b9"
author bgruening
date Fri, 10 Sep 2021 08:20:08 +0000
parents
children
comparison
equal deleted inserted replaced
2:4fb73be7f4cb 3:4cc9d85c3bae
1 <macros>
2 <token name="@TOOL_VERSION@">4.0.0</token>
3 <xml name="requirements">
4 <requirements>
5 <requirement type="package" version="@TOOL_VERSION@">fpocket</requirement>
6 </requirements>
7 </xml>
8 <xml name="inputs">
9 <conditional name="inp">
10 <param name="pocket_type" type="select" label="Type of pocket to detect" help="Search for different kinds of pockets - or select 'custom' for more fine-grained control">
11 <option value="small_mol">Small molecule binding sites</option>
12 <option value="channel">Putative channels and small cavities</option>
13 <option value="external">Large, external pockets</option>
14 <option value="custom">Custom options (advanced)</option>
15 </param>
16 <when value="custom">
17 <param name="min" type="float" value="3" min="0" max="10" label="Minimum radius for an alpha sphere (angstroms)" help="An alpha sphere is an empty sphere in contact with 4 atoms in 3D space."/>
18 <param name="max" type="float" value="6" min="0" max="10" label="Maximum radius for an alpha sphere (angstroms)" help="An alpha sphere is an empty sphere in contact with 4 atoms in 3D space."/>
19 <param name="i" type="integer" value="35" min="20" max="50" label="Minimum number of alpha spheres a pocket must contain" help="Below this threshold pockets will not be listed in results"/>
20 <param name="D" type="float" value="2.4" min="0" max="10" label="Distance threshold for clustering algorithm (angstroms)" help="Alpha spheres may be clustered if they are separated by less than this distance"/>
21 <param name="C" type="select" value="s" label="Clustering method for grouping Voronoi vertices" help="Method for clustering alpha spheres">
22 <option value="s">Single linkage clustering</option>
23 <option value="m">Complete linkage clustering</option>
24 <option value="a">Average linkage clustering</option>
25 <option value="c">Centroid linkage clustering</option>
26 </param>
27 <param name="e" type="select" value="e" label="Distance measure for clustering">
28 <option value="e">Euclidean distance</option>
29 <option value="b">Manhattan distance</option>
30 </param>
31 </when>
32 <when value="small_mol"/>
33 <when value="channel"/>
34 <when value="external"/>
35 </conditional>
36 </xml>
37 <xml name="citations">
38 <citations>
39 <citation type="doi">10.1186/1471-2105-10-168</citation>
40 <citation type="doi">10.1093/nar/gkq383</citation>
41 </citations>
42 </xml>
43 </macros>