Mercurial > repos > metexplore > met4j
diff tools/mapping/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 |
line wrap: on
line diff
--- a/tools/mapping/ORApathwayEnrichment/ORApathwayEnrichment.xml Fri Jan 31 18:28:53 2025 +0000 +++ b/tools/mapping/ORApathwayEnrichment/ORApathwayEnrichment.xml Mon Feb 03 15:59:46 2025 +0000 @@ -1,11 +1,11 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> -<tool id="met4j_ORApathwayEnrichment" name="ORApathwayEnrichment" version="develop"> +<tool id="met4j_ORApathwayEnrichment" name="ORApathwayEnrichment" version="2.0.0"> <description>Perform Over Representation Analysis for Pathway Enrichment, using one-tailed exact Fisher Test.</description> <xrefs> <xref type="bio.tools">met4j</xref> </xrefs> <requirements> - <container type="singularity">oras://registry.forgemia.inra.fr/metexplore/met4j/met4j-singularity:develop</container> + <container type="singularity">oras://registry.forgemia.inra.fr/metexplore/met4j/met4j-singularity:2.0.0</container> </requirements> <command detect_errors="exit_code"><![CDATA[sh /usr/bin/met4j.sh mapping.ORApathwayEnrichment#if str($th) != 'nan': -th "$th" @@ -32,262 +32,39 @@ </outputs> <tests> <test> - - - - - - - - - - - <param name="sbml" value="XF_network.sbml"/> - - - - - - - - - - - <param name="input" value="XF_network_C_NOI.txt"/> - - - - - - - - - - - <output name="outputFile"> - - - - - - - - - - - <assert_contents> - - - - - - - - - - - <has_n_columns n="3"/> - - - - - - - - - - - <has_n_lines n="3"/> - - - - - - - - - - - </assert_contents> - - - - - - - - - - - </output> - - - - - - - - - - - </test> <test> - - - - - - - - - - - <param name="sbml" value="XF_network.sbml"/> - - - - - - - - - - - <param name="input" value="XF_network_C_NOI.txt"/> - - - - - - - - - - - <param name="corr" value="HolmBonferroni"/> - - - - - - - - - - - <param name="th" value="0.005"/> - - - - - - - - - - - <output name="outputFile"> - - - - - - - - - - - <assert_contents> - - - - - - - - - - - <has_n_columns n="3"/> - - - - - - - - - - - <has_n_lines n="2"/> - - - - - - - - - - - </assert_contents> - - - - - - - - - - - </output> - - - - - - - - - - - </test> </tests> <help><![CDATA[Perform Over Representation Analysis for Pathway Enrichment, using one-tailed exact Fisher Test. The fisher exact test computes the probability p to randomly get the given set of values. This version computes the probability to get at least the given overlap between the given set and the given modality : Sum the hypergeometric probability with increasing target/query intersection cardinality. - The hypergeometric probability is computed from the following contingency table entries. (values in cells correspond to the marginal totals of each intersection groups) Query !Query Target a b !Target c d - The probability of obtaining the set of value is computed as following: p = ((a+b)!(c+d)!(a+c)!(b+d)!)/(a!b!c!d!(a+b+c+d)!) - The obtained p-value is then adjusted for multiple testing using one of the following methods: - Bonferroni: adjusted p-value = p*n - Benjamini-Hochberg: adjusted p-value = p*n/k