comparison metaquantome_stat.xml @ 0:020a9ecdc1e1 draft

planemo upload for repository https://github.com/galaxyproteomics/tools-galaxyp/tree/master/tools/metaquantome commit d45eb2747cc58e1120b3935f10ab47c4e0f8f44a
author galaxyp
date Thu, 25 Apr 2019 13:50:59 -0400
parents
children 982a442a98dd
comparison
equal deleted inserted replaced
-1:000000000000 0:020a9ecdc1e1
1 <tool id="metaquantome_stat" name="metaQuantome: stat" version="@GVERSION@">
2 <description>differential analysis of functional expression and taxonomic abundance</description>
3 <macros>
4 <import>macros.xml</import>
5 </macros>
6 <expand macro="requirements" />
7 <command detect_errors="exit_code"><![CDATA[
8 metaquantome stat
9 --samps '$samps'
10 --mode '$mode_args.mode'
11 #if $mode_args.mode == 'f' or $mode_args.mode == 'ft'
12 --ontology='$mode_args.ontology_args.ontology'
13 #end if
14 --file '$file'
15 --parametric '$parametric'
16 $paired
17 --outfile='$outfile'
18 ]]></command>
19 <inputs>
20 <expand macro="SAMPS"/>
21 <param argument="--file" type="data" format="tabular" label="metaquantome expanded or filtered file"
22 help=""/>
23 <conditional name="mode_args">
24 <param argument="--mode" type="select" label="Mode">
25 <option value="f">Functional analysis</option>
26 <option value="t">Taxonomic analysis</option>
27 <option value="ft">Functional-taxonomic interaction analysis</option>
28 </param>
29 <when value="f">
30 <expand macro="ONTOLOGY_ARGS"/>
31 </when>
32 <when value="t">
33 </when>
34 <when value="ft">
35 <expand macro="ONTOLOGY_ARGS"/>
36 </when>
37 </conditional>
38 <param argument="--parametric" type="select" label="Statistical test to perform">
39 <option value="False" selected="true">Wilcoxon test (nonparametric)</option>
40 <option value="True">standard t-test (parametric)</option>
41 </param>
42 <param argument="--paired" type="boolean" truevalue="--paired" falsevalue="" checked="false" label="Perform paired tests"/>
43 </inputs>
44 <outputs>
45 <data format="tabular" name="outfile" label="${tool.name} on ${on_string} stats"/>
46 </outputs>
47 <tests>
48 <test>
49 <param name="file" value="ec_ttest.tab" ftype="tabular" />
50 <param name="parametric" value="True" />
51 <param name="ontology" value="ec" />
52 <param name="mode" value="f" />
53 <param name="samps" value="samples_basic.tab" ftype="tabular" />
54 <output name="outfile" value="ec_ttest_tested.tab" ftype="tabular"/>
55 </test>
56 </tests>
57 <help><![CDATA[
58 metaQuantome stat
59 ===================
60
61 The *stat* module is the third step in the metaQuantome analysis workflow. The purpose
62 of the *stat* module is to perform differential expression analysis between 2 experimental
63 conditions. metaQuantome offers paired and unpaired tests,
64 as well as parametric and non-parametric options.
65
66 Questions, Comments, Problems, Kudos
67 --------------------------------------
68
69 Please file any issues at https://github.com/galaxyproteomics/tools-galaxyp/issues.
70
71 ]]></help>
72 <expand macro="citations" />
73 </tool>