Mercurial > repos > caleb-easterly > peca
comparison peca.xml @ 5:5a39fa8a235a draft
planemo upload for repository https://github.com/caleb-easterly/galaxytools/peca
author | caleb-easterly |
---|---|
date | Thu, 22 Feb 2018 11:45:43 -0500 |
parents | 07bd2582526b |
children | e16cd77cf9f7 |
comparison
equal
deleted
inserted
replaced
4:07bd2582526b | 5:5a39fa8a235a |
---|---|
5 </requirements> | 5 </requirements> |
6 <command detect_errors="exit_code"><![CDATA[ | 6 <command detect_errors="exit_code"><![CDATA[ |
7 ## write groups to file | 7 ## write groups to file |
8 echo '$group1' > group1.txt && | 8 echo '$group1' > group1.txt && |
9 echo '$group2' > group2.txt && | 9 echo '$group2' > group2.txt && |
10 Rscript --vanilla '$__tool_directory__/peca.R' '$input' group1.txt group2.txt '$output' | 10 Rscript --vanilla '$__tool_directory__/peca.R' '$input' group1.txt group2.txt '$test_type' '$output' |
11 ]]></command> | 11 ]]></command> |
12 <inputs> | 12 <inputs> |
13 <param name="input" type="data" format="tabular"/> | 13 <param name="input" type="data" format="tabular"/> |
14 <param name="group1" type="data_column" data_ref="input" multiple="true"/> | 14 <param name="group1" type="data_column" data_ref="input" multiple="true"/> |
15 <param name="group2" type="data_column" data_ref="input" multiple="true"/> | 15 <param name="group2" type="data_column" data_ref="input" multiple="true"/> |
16 <param name="test_type" type="select"> | |
17 <option value="t" selected="true">Standard t-test</option> | |
18 <option value="modt">Modified t-test</option> | |
19 <option value="rots">Reproducibility-optimized test statistic</option> | |
20 <param> | |
16 </inputs> | 21 </inputs> |
17 <outputs> | 22 <outputs> |
18 <data format="tabular" name="output"/> | 23 <data format="tabular" name="output"/> |
19 </outputs> | 24 </outputs> |
20 <tests> | 25 <tests> |
21 <test> | 26 <test> |
22 <param name="input" value="test.tab" ftype="tabular"/> | 27 <param name="input" value="test.tab" ftype="tabular"/> |
23 <param name="group1" value="2,3,4"/> | 28 <param name="group1" value="2,3,4"/> |
24 <param name="group2" value="5,6,7"/> | 29 <param name="group2" value="5,6,7"/> |
30 <param name="test_type" value="t"/> | |
25 <output name="output" file="out.tab" ftype="tabular"/> | 31 <output name="output" file="out.tab" ftype="tabular"/> |
26 </test> | 32 </test> |
27 </tests> | 33 </tests> |
28 <help><![CDATA[ | 34 <help><![CDATA[ |
29 ]]></help> | 35 ]]></help> |