Mercurial > repos > caleb-easterly > peca
comparison peca.xml @ 0:f50bb34c1a37 draft
planemo upload for repository https://github.com/caleb-easterly/galaxytools/peca
author | caleb-easterly |
---|---|
date | Wed, 21 Feb 2018 16:29:34 -0500 |
parents | |
children | 34c1ae5e99ac |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:f50bb34c1a37 |
---|---|
1 <tool id="peca" name="PECA: Probe-level expression change averaging" version="0.1.0"> | |
2 <requirements> | |
3 <requirement type="package" version="1.14.0">bioconductor-peca</requirement> | |
4 </requirements> | |
5 <command detect_errors="exit_code"><![CDATA[ | |
6 ## write group 1 to file | |
7 echo '$group1' > group1.txt && | |
8 echo '$group2' > group2.txt && | |
9 cat group1.txt && | |
10 Rscript --vanilla '$__tool_directory__/peca.R' '$input' '$group1' '$group2' '$output' | |
11 ]]></command> | |
12 <inputs> | |
13 <param name="input" type="data" format="tabular"/> | |
14 <param name="group1" type="data_column" data_ref="input" multiple="true"/> | |
15 <param name="group2" type="data_column" data_ref="input" multiple="true"/> | |
16 </inputs> | |
17 <outputs> | |
18 <data format="tabular" name="output"/> | |
19 </outputs> | |
20 <tests> | |
21 <test> | |
22 <param name="input" value="test.tab" ftype="tabular"/> | |
23 <param name="group1" value="2,3,4"/> | |
24 <param name="group2" value="4,5,6"/> | |
25 <output name="output" file="out.tab" ftype="tabular"/> | |
26 </test> | |
27 </tests> | |
28 <help><![CDATA[ | |
29 ]]></help> | |
30 </tool> |