annotate concatenate.xml @ 4:15f72c57117d draft

Test concatenate changes
author trinity_ctat
date Fri, 15 Sep 2017 16:15:49 -0400
parents f92a7e742298
children 38f80bb7b29c
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
f92a7e742298 Test concatenate changes
trinity_ctat
parents: 2
diff changeset
1 <tool id="catbash" name="Concatenate datasets" version="2.0.0">
0
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
2 <description> concatenate datasets from tail to head</description>
2
2a3972086548 Test concatenate changes
trinity_ctat
parents: 1
diff changeset
3 <requirements>
4
15f72c57117d Test concatenate changes
trinity_ctat
parents: 3
diff changeset
4 <requirement type="package" version="2.7">python</requirement>
2
2a3972086548 Test concatenate changes
trinity_ctat
parents: 1
diff changeset
5 </requirements>
1
1e638acde0cf Test concatenate changes
trinity_ctat
parents: 0
diff changeset
6 <command>
1e638acde0cf Test concatenate changes
trinity_ctat
parents: 0
diff changeset
7 <![CDATA[
4
15f72c57117d Test concatenate changes
trinity_ctat
parents: 3
diff changeset
8 python bash_command_executer.py cat
0
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
9 $input1
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
10 #for $q in $queries
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
11 ${q.input2}
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
12 #end for
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
13 > $out_file1
1
1e638acde0cf Test concatenate changes
trinity_ctat
parents: 0
diff changeset
14 ]]>
0
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
15 </command>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
16 <inputs>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
17 <param name="input1" type="data" label="Concatenate Dataset"/>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
18 <repeat name="queries" title="Dataset">
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
19 <param name="input2" type="data" label="Select" />
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
20 </repeat>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
21 </inputs>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
22 <outputs>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
23 <data name="out_file1" format="input" metadata_source="input1"/>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
24 </outputs>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
25 <tests>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
26 <test>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
27 <param name="input1" value="Sp_ds.left.fq"/>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
28 <param name="input2" value="Sp_hs.left.fq"/>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
29 <output name="out_file1" file="Sp.cat_ds_hs.left.fq">
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
30 <assert_contents>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
31 <has_line_matching expression=".+" />
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
32 </assert_contents>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
33 </output>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
34 </test>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
35 <test>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
36 <param name="input1" value="Sp_ds.right.fq"/>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
37 <param name="input2" value="Sp_hs.right.fq"/>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
38 <output name="out_file1" file="Sp.cat_ds_hs.right.fq">
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
39 <assert_contents>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
40 <has_line_matching expression=".+" />
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
41 </assert_contents>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
42 </output>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
43 </test>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
44 <!--TODO: if possible, enhance the underlying test code to handle this test
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
45 the problem is multiple params with the same name "input2"
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
46 <test>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
47 <param name="input1" value="1.bed"/>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
48 <param name="input2" value="2.bed"/>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
49 <param name="input2" value="3.bed"/>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
50 <output name="out_file1" file="cat_wrapper_out2.bed"/>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
51 </test>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
52 -->
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
53 </tests>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
54 <help>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
55 .. class:: infomark
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
56
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
57 Combine left and right reads of paired ends for different conditions into a single target for Trinity assembly.
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
58
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
59 If you are following the Trinity RNA-seq protocol please go here_ for a galaxy tool walk through or the Nature Protocols paper_.
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
60
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
61 .. _here: https://github.com/trinityrnaseq/GalaxyTrinityProtocol/wiki
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
62 .. _paper: http://www.nature.com/nprot/journal/v8/n8/full/nprot.2013.084.html
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
63 </help>
7a974f285033 Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff changeset
64 </tool>