Mercurial > repos > iuc > heinz
comparison bum.xml @ 0:e41ec5af7472 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/heinz commit b0b2c64a46bdd9beebdfb7fc5312f75346483763
author | iuc |
---|---|
date | Thu, 02 Aug 2018 11:57:44 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:e41ec5af7472 |
---|---|
1 <tool id="heinz_bum" name="Fit a BUM model" version="1.0"> | |
2 <description>with p-values</description> | |
3 <requirements> | |
4 <requirement type="package" version="1.20.0">r-getopt</requirement> | |
5 <requirement type="package" version="1.34.0">bioconductor-bionet</requirement> | |
6 </requirements> | |
7 <command detect_errors="exit_code"><![CDATA[ | |
8 Rscript '$__tool_directory__/bum.R' --input '$p_values' --output '$dist_params' | |
9 ]]></command> | |
10 <inputs> | |
11 <param type="data" name="p_values" label="Input file" format="txt" help=" | |
12 The input file should only contain p-values, one per line." /> | |
13 </inputs> | |
14 <outputs> | |
15 <data name="dist_params" format="txt" label="${tool.name} on ${on_string}: BUM params"/> | |
16 </outputs> | |
17 <tests> | |
18 <!--Ensure the stochastic result is similar enough--> | |
19 <test> | |
20 <param name="p_values" value="BUM_input.txt" /> | |
21 <output name="dist_params"> | |
22 <assert_contents> | |
23 <has_text text="0.684" /> | |
24 <has_text text="0.376" /> | |
25 </assert_contents> | |
26 </output> | |
27 </test> | |
28 </tests> | |
29 <help><![CDATA[ | |
30 BUM is the abbreviation for "Beta-Uniform Mixture (BUM) distribution." | |
31 | |
32 This tool (part of the package "Bionet") is used for fitting Beta-Uniform | |
33 mixture model to a P-value distribution, the output of which is two model | |
34 parameters: lambda and alpha, kept in a text file, the first line is | |
35 lambda; the second, alpha. | |
36 ]]></help> | |
37 <citations> | |
38 <citation type="doi">10.1093/bioinformatics/btq089</citation> | |
39 <citation type="doi">10.1093/bioinformatics/btn161</citation> | |
40 </citations> | |
41 </tool> |