Mercurial > repos > bgruening > salmonquantmerge
comparison salmonquantmerge.xml @ 0:43658f594542 draft
"planemo upload for repository https://github.com/bgruening/galaxytools/tree/master/tools/salmon commit 8f432498890670fd03a197bd3d1aa2638d1ff2b3"
author | bgruening |
---|---|
date | Mon, 09 Sep 2019 11:12:04 -0400 |
parents | |
children | 88c07fc4024c |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:43658f594542 |
---|---|
1 <tool id="salmonquantmerge" name="Salmon quantmerge" version="@VERSION@"> | |
2 <description>Merge multiple quantification results into a single file</description> | |
3 <macros> | |
4 <import>macros.xml</import> | |
5 </macros> | |
6 <expand macro="requirements"/> | |
7 <command detect_errors="exit_code"><![CDATA[ | |
8 @qmerge@ | |
9 ]]></command> | |
10 <inputs> | |
11 <expand macro="quantmerge"/> | |
12 </inputs> | |
13 <outputs> | |
14 <data name="mergedfile" format="tabular" label="${tool.name} on ${on_string}" from_work_dir="qmergeout.tab"/> | |
15 </outputs> | |
16 <tests> | |
17 <test expect_num_outputs="1"> | |
18 <repeat name="quantfiles"> | |
19 <param name="quants" value="quant2.sf"/> | |
20 <param name="names" value="asdf"/> | |
21 </repeat> | |
22 <repeat name="quantfiles"> | |
23 <param name="quants" value="quant1.sf"/> | |
24 <param name="names" value="qwerty"/> | |
25 </repeat> | |
26 <output name="mergedfile" ftype="tabular"> | |
27 <assert_contents> | |
28 <has_text text="qwerty"/> | |
29 <has_text text="NM_014621"/> | |
30 <has_n_columns n="3"/> | |
31 </assert_contents> | |
32 </output> | |
33 </test> | |
34 </tests> | |
35 <help><![CDATA[ | |
36 @salmonhelp@ | |
37 ]]></help> | |
38 <expand macro="citations"/> | |
39 </tool> |