Mercurial > repos > trinity_ctat > concatenate
annotate concatenate.xml @ 1:1e638acde0cf draft
Test concatenate changes
author | trinity_ctat |
---|---|
date | Fri, 15 Sep 2017 15:28:26 -0400 |
parents | 7a974f285033 |
children | 2a3972086548 |
rev | line source |
---|---|
0
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
1 <tool id="catbash" name="Concatenate datasets"> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
2 <description> concatenate datasets from tail to head</description> |
1 | 3 <!-- bash_command_executer.py cat |
4 --> | |
5 <command> | |
6 <![CDATA[ | |
7 cat | |
0
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
8 $input1 |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
9 #for $q in $queries |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
10 ${q.input2} |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
11 #end for |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
12 > $out_file1 |
1 | 13 ]]> |
0
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
14 </command> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
15 <inputs> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
16 <param name="input1" type="data" label="Concatenate Dataset"/> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
17 <repeat name="queries" title="Dataset"> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
18 <param name="input2" type="data" label="Select" /> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
19 </repeat> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
20 </inputs> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
21 <outputs> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
22 <data name="out_file1" format="input" metadata_source="input1"/> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
23 </outputs> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
24 <tests> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
25 <test> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
26 <param name="input1" value="Sp_ds.left.fq"/> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
27 <param name="input2" value="Sp_hs.left.fq"/> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
28 <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
|
29 <assert_contents> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
30 <has_line_matching expression=".+" /> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
31 </assert_contents> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
32 </output> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
33 </test> |
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 <param name="input1" value="Sp_ds.right.fq"/> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
36 <param name="input2" value="Sp_hs.right.fq"/> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
37 <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
|
38 <assert_contents> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
39 <has_line_matching expression=".+" /> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
40 </assert_contents> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
41 </output> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
42 </test> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
43 <!--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
|
44 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
|
45 <test> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
46 <param name="input1" value="1.bed"/> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
47 <param name="input2" value="2.bed"/> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
48 <param name="input2" value="3.bed"/> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
49 <output name="out_file1" file="cat_wrapper_out2.bed"/> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
50 </test> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
51 --> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
52 </tests> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
53 <help> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
54 .. class:: infomark |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
55 |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
56 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
|
57 |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
58 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
|
59 |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
60 .. _here: https://github.com/trinityrnaseq/GalaxyTrinityProtocol/wiki |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
61 .. _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
|
62 </help> |
7a974f285033
Initial commit with concatenate and trinity tools. Still testing.
trinity_ctat
parents:
diff
changeset
|
63 </tool> |