0
|
1 <tool id="bg_eden_nearest_neighbor" name="EDeN Nearest Neighbors" version="0.1">
|
|
2 <description></description>
|
|
3 <requirements>
|
|
4 </requirements>
|
|
5 <command>
|
|
6 EDeN --action NEAREST_NEIGHBOR
|
|
7
|
|
8 --input_data_file_name $infile
|
|
9 --file_type "SPARSE_VECTOR"
|
|
10 --binary_file_type
|
|
11
|
|
12 --target_file_name $target_infile
|
|
13 ##--model_file_name [model] ????????????????????
|
|
14
|
|
15 --kernel_type $kernel_type
|
|
16 --graph_type $graph_type
|
|
17
|
|
18 </command>
|
|
19 <inputs>
|
|
20
|
|
21 <param format="eden_sparse_vector" name="infile" type="data" label="Input Graph" help=""/>
|
|
22 <param format="txt" name="target_infile" type="data" label="Target file" help=""/>
|
|
23
|
|
24 <param name="kernel_type" type="select" display="radio" label="Type of the Kernel">
|
|
25 <option value="NSPDK">NSPDK</option>
|
|
26 <option value="WDK">WDK</option>
|
|
27 <option value="PBK">PBK</option>
|
|
28 <option value="USPK">USPK</option>
|
|
29 <option value="DDK">DDK</option>
|
|
30 <option value="NSDDK">ANSDDK</option>
|
|
31 <option value="SK">SK [NSPDK]</option>
|
|
32 </param>
|
|
33
|
|
34 <param name="graph_type" type="select" display="radio" label="Type of Graph">
|
|
35 <option value="DIRECTED">directed</option>
|
|
36 <option value="UNDIRECTED">undirected</option>
|
|
37 </param>
|
|
38
|
|
39 </inputs>
|
|
40 <outputs>
|
|
41 <data format="gspan" name="outfile" label="gSpan from ${on_string}"/>
|
|
42 </outputs>
|
|
43 <tests>
|
|
44 <test>
|
|
45 <param name="infile" value="3_molceuls.sdf" />
|
|
46 <output name="outfile" file="3_molecules.gspan" />
|
|
47 </test>
|
|
48 </tests>
|
|
49 <help>
|
|
50
|
|
51 .. class:: infomark
|
|
52
|
|
53 **What it does**
|
|
54
|
|
55 Nearest neighbors are efficiently identified with a locality sensitive hashing technique.
|
|
56
|
|
57 This tool is part of the EDeN (Explicit Decomposition with Neighborhoods) suite, developed by Fabrizio Costa.
|
|
58
|
|
59 </help>
|
|
60 </tool>
|