comparison abims_anova.xml @ 11:102049093b7d draft default tip

planemo upload for repository https://github.com/workflow4metabolomics/anova commit 4922313a0e9569326b7723c41babb89f998dbfd9
author lecorguille
date Tue, 13 Mar 2018 09:47:21 -0400
parents b147b17759a6
children
comparison
equal deleted inserted replaced
10:b147b17759a6 11:102049093b7d
1 <tool id="abims_anova" name="Anova" version="1.2.0"> 1 <tool id="abims_anova" name="Anova" version="1.2.1">
2 2
3 <description>N-way anova. With ou Without interactions</description> 3 <description>N-way anova. With ou Without interactions</description>
4 4
5 <requirements> 5 <requirements>
6 <requirement type="package" version="1.1_4">r-batch</requirement> 6 <requirement type="package" version="1.1_4">r-batch</requirement>
27 outputdatapvalue '$varMetaPValue' 27 outputdatapvalue '$varMetaPValue'
28 outputdatasignif '$dataSignif' 28 outputdatasignif '$dataSignif'
29 </command> 29 </command>
30 30
31 <inputs> 31 <inputs>
32 <param name="input" type="data" label="Data Matrix file" format="tabular" help="Matrix of numeric data with headers." /> 32 <param name="input" type="data" label="Data Matrix file" format="tabular,csv" help="Matrix of numeric data with headers." />
33 <param name="sampleinfo" type="data" label="Sample Metadata file" format="tabular" help="Tabular file with the data metadata : one sample per line and at least two columns : ids and one condition" /> 33 <param name="sampleinfo" type="data" label="Sample Metadata file" format="tabular" help="Tabular file with the data metadata : one sample per line and at least two columns : ids and one condition" />
34 <param name="varinfo" type="data" label="Variable Metadata file" format="tabular" help="Tabular file with information about your tested variables. Only used to aggregate generated information." /> 34 <param name="varinfo" type="data" label="Variable Metadata file" format="tabular" help="Tabular file with information about your tested variables. Only used to aggregate generated information." />
35 35
36 <param name="mode" type="select" help="Perform the anova tests on column/row; for W4M 3-tables format, use 'row'." format="text" optional="true"> 36 <param name="mode" type="select" help="Perform the anova tests on column/row; for W4M 3-tables format, use 'row'." format="text" optional="true">
37 <label>Mode</label> 37 <label>Mode</label>
119 ----------- 119 -----------
120 120
121 Analysis of variance (ANOVA) is used to analyze the differences between group means and their associated procedures, 121 Analysis of variance (ANOVA) is used to analyze the differences between group means and their associated procedures,
122 in which the observed variance in a particular variable is partitioned into components attributable to different sources of variation. 122 in which the observed variance in a particular variable is partitioned into components attributable to different sources of variation.
123 123
124 **Note about sum of squares (SS) calculation of N-way ANOVA in this module.**
125 This module use R function *manova()* (and thus R function *aov()*) to establish N-way ANOVA.
126 Therefore calculated sum of squares are sequential ones (sometimes called "Type I SS").
127 If your design is unbalanced, this may not correspond to the type of hypothesis being of interest.
128 Note that you can obtain adjusted sums of squares ("Type II SS") by running several times this module with different orders in factors.
124 129
125 130
126 ----------- 131 -----------
127 Input files 132 Input files
128 ----------- 133 -----------