annotate macros.xml @ 0:581d217c7337 draft

Planemo upload
author lgueguen
date Fri, 22 Jul 2016 05:39:13 -0400
parents
children d86ccac2a660
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
1 <macros>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
2 <xml name="requirements">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
3 <requirements>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
4 <requirement type="package" version="1.2.0">r-sartools</requirement>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
5 <requirement type="package" version="1.3.0">r-optparse</requirement>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
6 </requirements>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
7 </xml>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
8
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
9 <xml name="stdio">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
10 <stdio>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
11 <exit_code range="1" level="fatal" />
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
12 <regex match="Execution halted"
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
13 source="both"
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
14 level="fatal"
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
15 description="Execution halted" />
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
16 <regex match="rsync error"
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
17 source="both"
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
18 level="fatal"
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
19 description="rsync error" />
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
20 </stdio>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
21 </xml>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
22
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
23 <token name="@COMMAND_BASIC_PARAMETERS@">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
24 --projectName $projectName
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
25 --author $author
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
26 --targetFile $targetFile
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
27 --rawDir $rawDir
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
28 --featuresToRemove $featuresToRemove
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
29 --varInt $varInt
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
30 --condRef $condRef
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
31 </token>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
32
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
33 <token name="@COMMAND_BATCH_PARAM@">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
34 #if $advanced_parameters.batch_condition.condition:
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
35 --batch $advanced_parameters.batch_condition.batch
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
36 #else:
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
37 --batch NULL
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
38 #end if
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
39 </token>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
40
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
41 <token name="@COMMAND_OUTPUTS@">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
42 --figures_html $figures_html
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
43 --figures_html_files_path $figures_html.files_path
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
44 --tables_html $tables_html
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
45 --tables_html_files_path $tables_html.files_path
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
46 --rdata $rdata
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
47 --report_html $report_html
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
48 --log $log
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
49 </token>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
50
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
51 <macro name="basic_parameters">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
52 <param name="projectName" type="text" value="Project" label="Name of the project used for the report" help="(-P, --projectName) No space allowed." >
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
53 <validator type="regex" message="Field requires a value. No space allowed.">\S+</validator>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
54 </param>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
55 <param name="author" type="text" value="Galaxy" label="Name of the report author" help="(-A, --author) No space allowed." >
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
56 <validator type="regex" message="Field requires a value. No space allowed.">\S+</validator>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
57 </param>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
58 <param name="targetFile" type="data" format="txt" label="Design / target file" help="(-t, --targetFile) See the help section below for details on the required format." />
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
59 <param name="rawDir" type="data" format="no_unzip.zip,zip" label="Zip file containing raw counts files" help="(-r, --rawDir) See the help section below for details on the required format." />
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
60 <param name="featuresToRemove" type="text" size="100" value="alignment_not_unique,ambiguous,no_feature,not_aligned,too_low_aQual" label="Names of the features to be removed" help="(-F, --featuresToRemove) Separate the features with a comma, no space allowed. More than once can be specified. Specific HTSeq-count information and rRNA for example. Default are 'alignment_not_unique,ambiguous,no_feature,not_aligned,too_low_aQual'." >
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
61 <validator type="regex" message="Field requires a value. No space allowed.">\S+</validator>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
62 </param>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
63 <param name="varInt" type="text" value="group" label="Factor of interest" help="(-v, --varInt) Biological condition in the target file. Default is 'group'." >
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
64 <validator type="regex" message="Field requires a value. No space allowed.">\S+</validator>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
65 </param>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
66 <param name="condRef" type="text" value="WT" label="Reference biological condition" help="(-c, --condRef) Reference biological condition used to compute fold-changes, must be one of the levels of 'Factor of interest'." >
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
67 <validator type="regex" message="Field requires a value. No space allowed.">\S+</validator>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
68 </param>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
69 </macro>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
70
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
71 <macro name="batch_param">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
72 <conditional name="batch_condition">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
73 <param name="condition" type="boolean" checked="false" truevalue="batch" falsevalue="NULL" label="Add a blocking factor" help="(-b, --batch) Adjustment variable to use as a batch effect. Default: unchecked if no batch effect needs to be taken into account."/>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
74 <when value="NULL" />
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
75 <when value="batch">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
76 <param name="batch" type="text" value="batch" label="Blocking factor value" help="Must be a column of the target file" >
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
77 <validator type="empty_field"/>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
78 </param>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
79 </when>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
80 </conditional>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
81 </macro>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
82
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
83 <macro name="alpha_param">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
84 <param name="alpha" type="float" value="0.05" min="0" max="1" label="Threshold of statistical significance" help="(-a, --alpha) Significance threshold applied to the adjusted p-values to select the differentially expressed features. Default is 0.05. The comma is not allowed as decimal separator, use a point instead." />
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
85 </macro>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
86
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
87 <macro name="padjustmethod_param">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
88 <param name="pAdjustMethod" type="select" label="p-value adjustment method" help="(-p, --pAdjustMethod) p-value adjustment method for multiple testing. 'BH' by default, 'BY' or any value of p.adjust.methods." >
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
89 <option value="BH" selected="true">BH</option>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
90 <option value="BY">BY</option>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
91 <option value="bonferroni">bonferroni</option>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
92 <option value="fdr">fdr</option>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
93 <option value="hochberg">hochberg</option>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
94 <option value="holm">holm</option>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
95 <option value="hommel">hommel</option>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
96 </param>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
97 </macro>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
98
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
99 <macro name="colors_param">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
100 <param name="colors" type="text" size="100" value="dodgerblue,firebrick1,MediumVioletRed,SpringGreen,chartreuse,cyan,darkorchid,darkorange" label="Colors of each biological condition on the plots: 'col1,col2,col3,col4'" help="(-C, --colors) Separate the colors with a comma, no space allowed. Default are 'dodgerblue,firebrick1,MediumVioletRed,SpringGreen,chartreuse,cyan,darkorchid,darkorange'." >
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
101 <validator type="regex" message="Field requires a value. No space allowed.">\S+</validator>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
102 </param>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
103 </macro>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
104
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
105 <macro name="outputs">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
106 <data name="report_html" format="html" label="${tool.name} report" />
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
107 <data name="tables_html" format="html" label="${tool.name} tables" />
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
108 <data name="figures_html" format="html" label="${tool.name} figures" />
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
109 <data name="log" format="txt" label="${tool.name} R log" />
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
110 <data name="rdata" format="data" label="${tool.name} R objects (.RData)" />
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
111 </macro>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
112
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
113 <token name="@HELP_AUTHORS@">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
114 .. class:: infomark
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
115
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
116 **Authors** M.-A. Dillies and H. Varet
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
117
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
118 | If you use this tool, please cite: H. Varet, L. Brillet-Guéguen, J.-Y. Coppee and M.-A. Dillies, SARTools: A DESeq2- and EdgeR-Based R Pipeline for Comprehensive Differential Analysis of RNA-Seq Data, PLoS One, 2016, doi: http://dx.doi.org/10.1371/journal.pone.0157022
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
119 | For details about this tool, please go to https://github.com/PF2-pasteur-fr/SARTools
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
120
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
121 .. class:: infomark
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
122
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
123 **Galaxy integration** Loraine Brillet-Guéguen, Institut Français de Bioinformatique
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
124
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
125 | Contact support.abims@sb-roscoff.fr for any questions or concerns about the Galaxy implementation of this tool.
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
126
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
127 ---------------------------------------------------
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
128 </token>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
129
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
130 <token name="@HELP_DESCRIPTION@">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
131 | SARTools is a R package dedicated to the differential analysis of RNA-seq data. It provides tools to generate descriptive and diagnostic graphs, to run the differential analysis with one of the well known DESeq2 or edgeR packages and to export the results into easily readable tab-delimited files. It also facilitates the generation of a HTML report which displays all the figures produced, explains the statistical methods and gives the results of the differential analysis.
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
132 | Note that SARTools does not intend to replace DESeq2 or edgeR: it simply provides an environment to go with them. For more details about the methodology behind DESeq2 or edgeR, the user should read their documentations and papers.
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
133 </token>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
134
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
135 <token name="@HELP_INPUT_FILES@">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
136 .. class:: warningmark
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
137
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
138 If the counts and the target files are not supplied in the required formats, the workflow will probably crash and will not be able to run the analysis.
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
139
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
140
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
141 +---------------------------+-----------+
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
142 | Parameter : num + label | Format |
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
143 +===========================+===========+
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
144 | 1 : Design / target file | tabular |
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
145 +---------------------------+-----------+
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
146 | 2 : Raw counts files | zip |
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
147 +---------------------------+-----------+
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
148
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
149
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
150 Design/target file:
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
151 | The user has to supply a tab delimited file which describes the experiment, i.e. which contains the name of the biological condition associated with each sample. This file is called ”target” as a reference to the target file needed when using the limma package [1]. This file has one row per sample and is composed of at least three columns with headers:
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
152
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
153 * column 1 : unique names of the samples (short but informative as they will be displayed on all the figures);
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
154 * column 2 : name of the count files;
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
155 * column 3 : biological conditions;
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
156 * optional columns : further information about the samples (day of library preparation for example).
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
157
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
158
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
159 - Example of a target file::
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
160
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
161 label files group
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
162 s1c1 count_file_sample1_cond1.txt cond1
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
163 s2c1 count_file_sample2_cond1.txt cond1
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
164 s1c2 count_file_sample1_cond2.txt cond2
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
165 s2c2 count_file_sample2_cond2.txt cond2
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
166
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
167
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
168 Zip file containing raw counts files:
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
169 | The statistical analysis assumes that reads have already been mapped and that counts per feature (gene or transcript) are available. If counting has been done with HTSeq-count [2, 3], output files are ready to be loaded in R with the dedicated SARTools function. If not, the user must supply, in a zip file, one count file per sample with two tab delimited columns without header:
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
170
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
171 * column 1 : the unique IDs of the features;
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
172 * column 2 : the raw counts associated with these features (null or positive integers).
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
173 </token>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
174
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
175 <token name="@HELP_BASIC_PARAMETERS@">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
176 * **projectName:** name of the project;
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
177 * **author:** author of the analysis;
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
178 * **featuresToRemove:** character vector containing the IDs of the features to remove before running the analysis (default are "alignment not unique", "ambiguous", "no feature", "not aligned", "too low aQual" to remove HTSeq-count specific rows);
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
179 * **varInt:** variable of interest, i.e. biological condition, in the target file ("group" by default);
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
180 * **condRef:** reference biological condition used to compute fold-changes (no default, must be one of the levels of varInt);
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
181 </token>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
182
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
183 <token name="@HELP_OUTPUT_FILES@">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
184 **Report:**
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
185
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
186
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
187 | Give details about the methodology, the different steps and the results. It displays all the figures produced and the most important results of the differential analysis as the number of up- and down-regulated features.
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
188 | The user should read the full HTML report and closely analyze each figure to check that the analysis ran smoothly.
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
189
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
190
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
191 **Tables:**
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
192
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
193
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
194 * **TestVsRef.complete.txt:** contains all the features studied;
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
195 * **TestVsRef.down.txt:** contains only significant down-regulated features, i.e. less expressed in Test than in Ref;
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
196 * **TestVsRef.up.txt:** contains only significant up-regulated features i.e. more expressed in Test than in Ref.
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
197
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
198
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
199 **Figures:**
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
200
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
201
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
202 * **MAplot.png:** MA-plot for each comparison (log ratio of the means vs intensity).
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
203 * **PCA.png:** first and second factorial planes of the PCA on the samples based on VST or rlog data;
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
204 * **barplotNull.png:** percentage of null counts per sample;
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
205 * **barplotTC.png:** total number of reads per sample;
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
206 * **cluster.png:** hierachical clustering of the samples (based on VST or rlog data);
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
207 * **countsBoxplot.png:** boxplots on raw and normalized counts;
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
208 * **densplot.png:** estimation of the density of the counts for each sample;
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
209 * **diagSizeFactorsHist.png:** diagnostic of the estimation of the size factors;
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
210 * **diagSizeFactorsTC.png:** plot of the size factors vs the total number of reads;
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
211 * **dispersionsPlot.png:** graph of the estimations of the dispersions and diagnostic of log-linearity of the dispersions;
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
212 * **majSeq.png:** percentage of reads caught by the feature having the highest count in each sample;
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
213 * **pairwiseScatter.png:** pairwise scatter plot between each pair of samples and SERE values;
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
214 * **rawpHist.png:** histogram of the raw p-values for each comparison;
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
215 * **volcanoPlot.png:** vulcano plot for each comparison (− log10 (adjusted P value) vs log ratio of the means).
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
216
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
217
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
218 **R log file:**
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
219
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
220
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
221 | Give the R console outputs.
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
222
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
223
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
224 **R objects (.RData file):**
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
225
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
226
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
227 | Give all the R objects created during the analysis is saved: it may be used to perform downstream analyses.
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
228 </token>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
229
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
230 <macro name="common_citations">
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
231 <citation type="doi">10.1371/journal.pone.0157022</citation>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
232 <citation type="bibtex">@INBOOK{Smyth05,
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
233 author = {G.-K. Smyth},
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
234 editor = {R. Gentleman, V. Carey, S. Dudoit, R. Irizarry, and W. Huber},
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
235 chapter = {Limma: linear models for microarray data},
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
236 title = {Bioinformatics and Computational Biology Solutions Using R and Bioconductor},
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
237 publisher = {Springer},
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
238 year = {2005},
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
239 pages = {397–420}
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
240 }</citation>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
241 <citation type="doi">10.1093/bioinformatics/btu638</citation>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
242 <citation type="bibtex">@ARTICLE{Benjamini95,
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
243 author = {Y. Benjamini and Y. Hochberg},
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
244 title = {Controlling the false discovery rate: a practical and powerful approach to multiple testing},
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
245 journal = {Journal of the Royal Statistical Society B},
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
246 year = {1995},
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
247 volume = {57},
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
248 pages = {289–300}
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
249 }</citation>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
250 <citation type="bibtex">@ARTICLE{Benjamini01,
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
251 author = {Y. Benjamini and D. Yekutieli},
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
252 title = {The control of the false discovery rate in multiple testing under dependency},
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
253 journal = {Ann. Statist.},
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
254 year = {2001},
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
255 volume = {29},
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
256 number = {4},
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
257 pages = {1165–1188}
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
258 }</citation>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
259 </macro>
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
260
581d217c7337 Planemo upload
lgueguen
parents:
diff changeset
261 </macros>