comparison create_account.xml @ 0:f889e757ca93 draft

planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/apollo commit f745b23c84a615bf434d717c8c0e553a012f0268
author gga
date Mon, 11 Sep 2017 05:45:08 -0400
parents
children 08f8e19005a8
comparison
equal deleted inserted replaced
-1:000000000000 0:f889e757ca93
1 <?xml version="1.0"?>
2 <tool id="create_account" name="Register Account" version="3.0">
3 <description>with Apollo</description>
4 <macros>
5 <import>macros.xml</import>
6 </macros>
7 <expand macro="requirements"/>
8 <command detect_errors="aggressive"><![CDATA[
9 python $__tool_directory__/create_account.py
10
11 @ADMIN_AUTH@
12
13 $__user_email__
14
15 --first "$first"
16 --last "$last"
17 > $output]]></command>
18 <inputs>
19 <param name="first" type="text" label="First Name" />
20 <param name="last" type="text" label="Last Name" />
21 </inputs>
22 <outputs>
23 <data format="txt" name="output" label="Apollo Credentials"/>
24 </outputs>
25 <tests>
26 <test expect_failure="true">
27 <param name="first" value="first" />
28 <param name="last" value="last" />
29
30 <expand macro="test_result" />
31 </test>
32 </tests>
33 <help><![CDATA[
34 **What it does**
35
36 Registers an account with Apollo. Just click run, then view
37 the output file for your password.
38
39 @REFERENCES@
40 ]]></help>
41 <expand macro="citations"/>
42 </tool>