Mercurial > repos > devteam > mine
annotate MINE.xml @ 1:d312c5837ed0 draft default tip
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
author | devteam |
---|---|
date | Tue, 13 Oct 2015 12:26:26 -0400 |
parents | cad7e25f68db |
children |
rev | line source |
---|---|
0 | 1 <tool id="maximal_information_based_nonparametric_exploration" name="MINE" version="0.0.1"> |
2 <description>- Maximal Information-based Nonparametric Exploration</description> | |
3 <requirements> | |
4 <requirement type="package" version="1.0.1">MINE</requirement> | |
5 </requirements> | |
6 <command interpreter="python">mine_wrapper.py | |
7 --jar "\${JAVA_JAR_PATH}/MINE.jar" | |
8 | |
9 --infile "${input_file}" | |
10 | |
11 #if str( $master_variable_type.master_variable_type_selector ) in [ 'allPairs', 'adjacentPairs' ]: | |
12 --master_variable "${master_variable_type.master_variable_type_selector}" | |
13 #else: | |
14 --master_variable "${master_variable_type.master_variable}" | |
15 #end if | |
16 | |
17 --cv "${cv}" | |
18 | |
19 --exp "${exp}" | |
20 | |
21 --c "${c}" | |
22 | |
23 ##--gc ##skip | |
24 | |
25 | |
26 #if str( $master_variable_type.master_variable_type_selector ) != 'allPairs' and $master_variable_type.permute: | |
27 --permute | |
28 #end if | |
29 | |
30 --output_results "${output_results}" | |
31 | |
32 --output_log "${output_log}" | |
33 </command> | |
34 <inputs> | |
35 <param name="input_file" type="data" format="csv" label="CSV file" /> | |
36 | |
37 <conditional name="master_variable_type"> | |
38 <param name="master_variable_type_selector" type="select" label="Choose the master variable type"> | |
39 <option value="allPairs">allPairs</option> | |
40 <option value="adjacentPairs">adjacentPairs</option> | |
41 <option value="compare_against_ith" selected="True">compare against i-th</option> | |
42 </param> | |
43 <when value="compare_against_ith"> | |
44 <param type="integer" value="0" name="master_variable" /> | |
45 <param type="boolean" truevalue="--permute" false_value="" name="permute" checked="False" /> | |
46 </when> | |
47 <when value="adjacentPairs"> | |
48 <param type="boolean" truevalue="--permute" false_value="" name="permute" checked="False" /> | |
49 </when> | |
1
d312c5837ed0
planemo upload commit 33927a87ba2eee9bf0ecdd376a66241b17b3d734
devteam
parents:
0
diff
changeset
|
50 <when value="allPairs" /> |
0 | 51 </conditional> |
52 | |
53 <param type="float" value="0" name="cv" /> | |
54 | |
55 <param type="float" value="0.6" name="exp" /> | |
56 | |
57 <param type="float" value="15" name="c" /> | |
58 | |
59 </inputs> | |
60 <outputs> | |
61 <data format="csv" name="output_results" label="${tool.name} on ${on_string} (Results)" /> | |
62 <data format="txt" name="output_log" label="${tool.name} on ${on_string} (log)" /> | |
63 </outputs> | |
64 <tests> | |
65 <!-- TODO --> | |
66 </tests> | |
67 <help> | |
68 **What it does** | |
69 | |
70 Applies the Maximal Information-based Nonparametric Exploration strategy to an input dataset. | |
71 | |
72 See http://www.exploredata.net/ for more information. | |
73 | |
74 ------ | |
75 | |
76 **Citation** | |
77 | |
78 For the underlying tool, please cite `David N. Reshef, Yakir A. Reshef, Hilary K. Finucane5, Sharon R. Grossman, Gilean McVean, Peter J. Turnbaugh, Eric S. Lander, Michael Mitzenmacher, Pardis C. Sabeti Detecting Novel Associations in Large Data Sets. Science. 2011 Dec. <http://www.sciencemag.org/content/334/6062/1518>`_ | |
79 | |
80 If you use this tool in Galaxy, please cite Blankenberg D, et al. *In preparation.* | |
81 | |
82 </help> | |
83 </tool> |