2
|
1 <tool id="refinery_test_1-1" name="Refinery test tool 1-1" version="0.1">
|
|
2 <description>for testing Galaxy workflow execution from Refinery</description>
|
|
3
|
|
4 <command interpreter="python">
|
8
|
5 refinery_test_tool.py -i $input_file -o $output_file -e $exit_code -p $p_fail -s $sleep_time $stdout $stderr $empty_outfile
|
2
|
6 </command>
|
|
7
|
|
8 <inputs>
|
|
9 <param name="input_file" format="txt" type="data" label="Input file"/>
|
|
10 <param name="sleep_time" type="integer" label="Sleep (seconds)" value="0" min="0"/>
|
8
|
11 <param name="empty_outfile" type="boolean" label="Produce empty output file" truevalue="--empty_outfile" falsevalue=""/>
|
2
|
12 <param name="p_fail" type="float" label="Probability of failure [0.0, 1.0]" value="0.0" min="0.0" max="1.0"/>
|
|
13 <param name="stdout" type="boolean" label="Write to standard out" truevalue="--stdout" falsevalue=""/>
|
|
14 <param name="stderr" type="boolean" label="Write to standard error" truevalue="--stderr" falsevalue=""/>
|
|
15 <param name="exit_code" type="integer" label="Exit code [0, 255]" value="0" min="0" max="255"/>
|
|
16 </inputs>
|
|
17
|
|
18 <outputs>
|
5
|
19 <data format="txt" name="output_file" label="Output file"/>
|
2
|
20 </outputs>
|
|
21
|
|
22 <stdio>
|
|
23 <exit_code range="1:" level="fatal" />
|
|
24 <regex match=".+" source="stdout" level="fatal" description="Tool produced output to standard out" />
|
|
25 <regex match=".+" source="stderr" level="fatal" description="Tool produced output to standard error" />
|
|
26 </stdio>
|
|
27
|
|
28 <help>
|
|
29
|
|
30 .. class:: infomark
|
|
31
|
|
32 **Purpose**
|
|
33
|
|
34 To test Galaxy workflow execution and monitoring from Refinery.
|
|
35
|
|
36 -----
|
|
37
|
|
38 .. class:: infomark
|
|
39
|
|
40 **Inputs and outputs**
|
|
41
|
|
42 This wrapper will accept one text file as input and produce a single output file
|
|
43 with content from input.
|
|
44
|
|
45 *Note:* You must set the "Probability of failure" parameter to a non-zero value
|
|
46 for "Write to standard out", "Write to standard error" or "Exit code" to take effect.
|
|
47
|
|
48 </help>
|
|
49 </tool>
|