comparison create_account.xml @ 10:a46a509386d3 draft

"planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/apollo commit 08015be1ee8a784e0619f961aaa724857debfd6f"
author gga
date Mon, 02 Dec 2019 05:50:13 -0500
parents 0c3a940da13d
children
comparison
equal deleted inserted replaced
9:0c3a940da13d 10:a46a509386d3
4 <macros> 4 <macros>
5 <import>macros.xml</import> 5 <import>macros.xml</import>
6 </macros> 6 </macros>
7 <expand macro="requirements"/> 7 <expand macro="requirements"/>
8 <command detect_errors="aggressive"><![CDATA[ 8 <command detect_errors="aggressive"><![CDATA[
9 python $__tool_directory__/create_account.py 9 @AUTH@
10 10
11 @ADMIN_AUTH@ 11 python '$__tool_directory__/create_account.py'
12 12
13 $__user_email__ 13 '$__user_email__'
14 14
15 --first "$first" 15 --first '$first'
16 --last "$last" 16 --last '$last'
17 > $output]]></command> 17 > $output]]></command>
18 <inputs> 18 <inputs>
19 <param name="first" type="text" label="First Name" /> 19 <param name="first" type="text" label="First Name" />
20 <param name="last" type="text" label="Last Name" /> 20 <param name="last" type="text" label="Last Name" />
21 </inputs> 21 </inputs>
22 <outputs> 22 <outputs>
23 <data format="txt" name="output" label="Apollo Credentials"/> 23 <data format="txt" name="output" label="Apollo Credentials"/>
24 </outputs> 24 </outputs>
25 <tests> 25 <tests>
26 <test expect_failure="true"> 26 <test>
27 <param name="first" value="first" /> 27 <param name="first" value="first" />
28 <param name="last" value="last" /> 28 <param name="last" value="last" />
29 29 <output name="output">
30 <expand macro="test_result" /> 30 <assert_contents>
31 <has_text text="Updated User" />
32 <has_text text="Password:" />
33 <has_text text="Return data:" />
34 <has_text text="alt_org" />
35 <has_text text="test_organism" />
36 </assert_contents>
37 </output>
31 </test> 38 </test>
32 </tests> 39 </tests>
33 <help><![CDATA[ 40 <help><![CDATA[
34 **What it does** 41 **What it does**
35 42