2
|
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: [Analysis]-->
|
|
4 <tool id="SimilarityAnalyzer" name="SimilarityAnalyzer" version="0.9">
|
|
5 <description>analyze similarity between molecule files</description>
|
|
6 <macros>
|
|
7 <token name="@EXECUTABLE@">SimilarityAnalyzer</token>
|
|
8 <import>macros.xml</import>
|
|
9 </macros>
|
|
10 <expand macro="stdio"/>
|
|
11 <expand macro="requirements"/>
|
|
12 <command>SimilarityAnalyzer
|
|
13
|
|
14 #if $param_i1:
|
|
15 -i1 $param_i1
|
|
16 #end if
|
|
17 #if $param_i2:
|
|
18 -i2 $param_i2
|
|
19 #end if
|
|
20 #if $param_o:
|
|
21 -o $param_o
|
|
22 #end if
|
|
23 #if $param_title:
|
|
24 -title "$param_title"
|
|
25 #end if
|
|
26 #if $param_quiet:
|
|
27 -quiet $param_quiet
|
|
28 #end if
|
|
29 </command>
|
|
30 <inputs>
|
|
31 <param name="param_i1" 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="<class 'CTDopts.CTDopts._Null'>" label="input molecule file 1" help="(-i1) "/>
|
|
32 <param name="param_i2" 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="<class 'CTDopts.CTDopts._Null'>" label="input molecule file 2" help="(-i2) "/>
|
|
33 <param name="param_title" type="text" size="30" value="<class 'CTDopts.CTDopts._Null'>" label="plot title" help="(-title) ">
|
|
34 <sanitizer>
|
|
35 <valid initial="string.printable">
|
|
36 <remove value="'"/>
|
|
37 <remove value="""/>
|
|
38 </valid>
|
|
39 </sanitizer>
|
|
40 </param>
|
|
41 <param name="param_quiet" type="integer" min="0" max="1" optional="True" value="0" label="by quiet, i.e. do not print status" help="(-quiet) "/>
|
|
42 </inputs>
|
|
43 <expand macro="advanced_options"/>
|
|
44 <outputs>
|
|
45 <data name="param_o" format="pdf"/>
|
|
46 </outputs>
|
|
47 <help>This tool evaluates the similarity between molecules in two input files and creates a distribution plot to visualize the result.
|
|
48
|
|
49 Therefore, for each molecule a pathway-based, hashed binary fingerprint is generated and compared to the fingerprint of other molecules by use of the Tanimoto similarity measure.
|
|
50 The output graphic will created by use of gnuplot, so make sure to have it installed and in your PATH environment variable.
|
|
51
|
|
52 The resulting plot (in form of an eps-, png- or pdf-file; as chosen) shows the distribution of similarity values obtained by comparing each molecule in input file 1 against each molecule in input file 2.
|
|
53
|
|
54 </help>
|
|
55 </tool>
|