comparison build/tools/ORApathwayEnrichment/ORApathwayEnrichment.xml @ 10:6a112eaf8f38 draft

planemo upload for repository https://forgemia.inra.fr/metexplore/met4j-galaxy commit 71071300dd662ad01bd064abcf6866a192eeea95
author metexplore
date Mon, 03 Feb 2025 15:59:46 +0000
parents 0976a6257300
children 40c15b7467f1
comparison
equal deleted inserted replaced
9:0976a6257300 10:6a112eaf8f38
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?> 1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <tool id="met4j_ORApathwayEnrichment" name="ORApathwayEnrichment" version="develop"> 2 <tool id="met4j_ORApathwayEnrichment" name="ORApathwayEnrichment" version="2.0.0">
3 <description>Perform Over Representation Analysis for Pathway Enrichment, using one-tailed exact Fisher Test.</description> 3 <description>Perform Over Representation Analysis for Pathway Enrichment, using one-tailed exact Fisher Test.</description>
4 <xrefs> 4 <xrefs>
5 <xref type="bio.tools">met4j</xref> 5 <xref type="bio.tools">met4j</xref>
6 </xrefs> 6 </xrefs>
7 <requirements> 7 <requirements>
8 <container type="singularity">oras://registry.forgemia.inra.fr/metexplore/met4j/met4j-singularity:develop</container> 8 <container type="singularity">oras://registry.forgemia.inra.fr/metexplore/met4j/met4j-singularity:2.0.0</container>
9 </requirements> 9 </requirements>
10 <command detect_errors="exit_code"><![CDATA[sh /usr/bin/met4j.sh mapping.ORApathwayEnrichment#if str($th) != 'nan': 10 <command detect_errors="exit_code"><![CDATA[sh /usr/bin/met4j.sh mapping.ORApathwayEnrichment#if str($th) != 'nan':
11 -th "$th" 11 -th "$th"
12 #end if 12 #end if
13 -i "$sbml" 13 -i "$sbml"
30 <outputs> 30 <outputs>
31 <data format="tsv" name="outputFile"/> 31 <data format="tsv" name="outputFile"/>
32 </outputs> 32 </outputs>
33 <tests> 33 <tests>
34 <test> 34 <test>
35
36
37
38
39
40
41
42
43
44
45
46 <param name="sbml" value="XF_network.sbml"/> 35 <param name="sbml" value="XF_network.sbml"/>
47
48
49
50
51
52
53
54
55
56
57
58 <param name="input" value="XF_network_C_NOI.txt"/> 36 <param name="input" value="XF_network_C_NOI.txt"/>
59
60
61
62
63
64
65
66
67
68
69
70 <output name="outputFile"> 37 <output name="outputFile">
71
72
73
74
75
76
77
78
79
80
81
82 <assert_contents> 38 <assert_contents>
83
84
85
86
87
88
89
90
91
92
93
94 <has_n_columns n="3"/> 39 <has_n_columns n="3"/>
95
96
97
98
99
100
101
102
103
104
105
106 <has_n_lines n="3"/> 40 <has_n_lines n="3"/>
107
108
109
110
111
112
113
114
115
116
117
118 </assert_contents> 41 </assert_contents>
119
120
121
122
123
124
125
126
127
128
129
130 </output> 42 </output>
131
132
133
134
135
136
137
138
139
140
141
142 </test> 43 </test>
143 <test> 44 <test>
144
145
146
147
148
149
150
151
152
153
154
155 <param name="sbml" value="XF_network.sbml"/> 45 <param name="sbml" value="XF_network.sbml"/>
156
157
158
159
160
161
162
163
164
165
166
167 <param name="input" value="XF_network_C_NOI.txt"/> 46 <param name="input" value="XF_network_C_NOI.txt"/>
168
169
170
171
172
173
174
175
176
177
178
179 <param name="corr" value="HolmBonferroni"/> 47 <param name="corr" value="HolmBonferroni"/>
180
181
182
183
184
185
186
187
188
189
190
191 <param name="th" value="0.005"/> 48 <param name="th" value="0.005"/>
192
193
194
195
196
197
198
199
200
201
202
203 <output name="outputFile"> 49 <output name="outputFile">
204
205
206
207
208
209
210
211
212
213
214
215 <assert_contents> 50 <assert_contents>
216
217
218
219
220
221
222
223
224
225
226
227 <has_n_columns n="3"/> 51 <has_n_columns n="3"/>
228
229
230
231
232
233
234
235
236
237
238
239 <has_n_lines n="2"/> 52 <has_n_lines n="2"/>
240
241
242
243
244
245
246
247
248
249
250
251 </assert_contents> 53 </assert_contents>
252
253
254
255
256
257
258
259
260
261
262
263 </output> 54 </output>
264
265
266
267
268
269
270
271
272
273
274
275 </test> 55 </test>
276 </tests> 56 </tests>
277 <help><![CDATA[Perform Over Representation Analysis for Pathway Enrichment, using one-tailed exact Fisher Test. 57 <help><![CDATA[Perform Over Representation Analysis for Pathway Enrichment, using one-tailed exact Fisher Test.
278 The fisher exact test computes the probability p to randomly get the given set of values. 58 The fisher exact test computes the probability p to randomly get the given set of values.
279 This version computes the probability to get at least the given overlap between the given set and the given modality : 59 This version computes the probability to get at least the given overlap between the given set and the given modality :
280 Sum the hypergeometric probability with increasing target/query intersection cardinality. 60 Sum the hypergeometric probability with increasing target/query intersection cardinality.
281
282 The hypergeometric probability is computed from the following contingency table entries. 61 The hypergeometric probability is computed from the following contingency table entries.
283 (values in cells correspond to the marginal totals of each intersection groups) 62 (values in cells correspond to the marginal totals of each intersection groups)
284 Query !Query 63 Query !Query
285 Target a b 64 Target a b
286 !Target c d 65 !Target c d
287
288 The probability of obtaining the set of value is computed as following: 66 The probability of obtaining the set of value is computed as following:
289 p = ((a+b)!(c+d)!(a+c)!(b+d)!)/(a!b!c!d!(a+b+c+d)!) 67 p = ((a+b)!(c+d)!(a+c)!(b+d)!)/(a!b!c!d!(a+b+c+d)!)
290
291 The obtained p-value is then adjusted for multiple testing using one of the following methods: 68 The obtained p-value is then adjusted for multiple testing using one of the following methods:
292 - Bonferroni: adjusted p-value = p*n 69 - Bonferroni: adjusted p-value = p*n
293 - Benjamini-Hochberg: adjusted p-value = p*n/k 70 - Benjamini-Hochberg: adjusted p-value = p*n/k
294 - Holm-Bonferroni: adjusted p-value = p*(n+1-k) 71 - Holm-Bonferroni: adjusted p-value = p*(n+1-k)
295 n : number of tests; k : pvalue rank]]></help> 72 n : number of tests; k : pvalue rank]]></help>