Mercurial > repos > labis-app > galaxy_proteomics
comparison t-test.xml @ 0:ba070efb6f78 draft
planemo upload commit 13e72e84c523bda22bda792bbebf4720d28542d5-dirty
author | labis-app |
---|---|
date | Tue, 03 Jul 2018 17:34:13 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:ba070efb6f78 |
---|---|
1 <?xml version="1.0"?> | |
2 <tool id="t-test" name="T-Test" version="1.0" hidden="false"> | |
3 <description> | |
4 </description> | |
5 <command interpreter="Rscript"> | |
6 t-test.R --inputfile_name=$input --type=$t_test_type --outputfile_name=$output | |
7 </command> | |
8 | |
9 <inputs> | |
10 <param format="tabular" name="input" type="data" label="Input table"/> | |
11 <param format="txt" name="t_test_type" type="select" label="Type of T-test"> | |
12 <option value="lfqlog2"> Log2 of LFQ Intensity </option> | |
13 <option value="intensity"> Intensity </option> | |
14 <option value="mscount"> MS Count </option> | |
15 </param> | |
16 </inputs> | |
17 | |
18 <outputs> | |
19 <data format="tabular" name="output" label="Complete table with p-values and significance on ${input.name}"/> | |
20 </outputs> | |
21 | |
22 <tests> | |
23 <test> | |
24 <param name="input" value="f1.fasta"/> | |
25 <param name="t_test_type" value="Intensity"/> | |
26 <output name="output" file="result_T_test.csv"/> | |
27 </test> | |
28 </tests> | |
29 | |
30 <help> | |
31 ** What it does ** | |
32 This tool executes an RScript that produces a p-values colum on the table. | |
33 </help> | |
34 | |
35 <citations> | |
36 <citation type="bibtex"> | |
37 @misc{Concatenate, | |
38 author = {Application, Labis}, | |
39 year = 2018, | |
40 title = Concatenate, | |
41 publisher = labisapplications | |
42 } | |
43 </citation> | |
44 </citations> | |
45 </tool> |