comparison refinery_test_1-N.xml @ 1:b87749d7a24c draft default tip

planemo upload commit 4fb0a789956149e5a58f4e370d7fe14f4e8bcf79
author refinery-platform
date Thu, 22 Feb 2018 14:14:03 -0500
parents
children
comparison
equal deleted inserted replaced
0:5b28174e774d 1:b87749d7a24c
1 <?xml version='1.0' encoding='utf-8'?>
2
3 <tool id="refinery_test_1-N" name="Refinery test tool 1-N" version="0.1">
4 <description>for testing Galaxy workflow execution from Refinery</description>
5 <command>
6 <![CDATA[
7 ## Run the splitter tool upon a single input producing N outputs based on how many concatenated files our input was created from.
8 $__tool_directory__/refinery_file_splitter.py -i $input_file
9 ]]>
10 </command>
11 <inputs>
12 <param name="input_file" format="txt" type="data" label="Input file"/>
13 </inputs>
14 <outputs>
15 <data format="txt" name="report">
16 <discover_datasets pattern="__designation_and_ext__" visible="true"/>
17 </data>
18 </outputs>
19 <tests>
20 <test>
21 <param name="input_file" value="concat_output.txt"/>
22 <discovered_dataset designation="Output file 1" ftype="txt">
23 <assert_contents>
24 <has_line line="Contents of File 1:"/>
25 </assert_contents>
26 </discovered_dataset>
27 <discovered_dataset designation="Output file 2" ftype="txt">
28 <assert_contents>
29 <has_line line="Contents of File 2:"/>
30 </assert_contents>
31 </discovered_dataset>
32 <discovered_dataset designation="Output file 3" ftype="txt">
33 <assert_contents>
34 <has_line line="Contents of File 3:"/>
35 </assert_contents>
36 </discovered_dataset>
37 </test>
38 </tests>
39 <help>
40 .. class:: infomark
41
42 **Purpose**
43
44 To test Galaxy workflow execution and monitoring from Refinery.
45
46 -----
47
48 .. class:: infomark
49
50 **Inputs and outputs**
51
52 This wrapper will accept one input file with the concatenated data of N input files run through refinery test tools and will partition said data into N output files containing the afforementioned N input files original contents
53 </help>
54 </tool>