Mercurial > repos > gga > apollo_create_account
view create_account.xml @ 14:8fadbd5cadff draft
"planemo upload for repository https://github.com/galaxy-genome-annotation/galaxy-tools/tree/master/tools/apollo commit 7f274d9deece87f6837ffb0a22d9231671be4542"
author | gga |
---|---|
date | Wed, 19 Aug 2020 06:57:40 -0400 |
parents | a46a509386d3 |
children |
line wrap: on
line source
<?xml version="1.0"?> <tool id="create_account" name="Register Account" version="@WRAPPER_VERSION@"> <description>with Apollo</description> <macros> <import>macros.xml</import> </macros> <expand macro="requirements"/> <command detect_errors="aggressive"><![CDATA[ @AUTH@ python '$__tool_directory__/create_account.py' '$__user_email__' --first '$first' --last '$last' > $output]]></command> <inputs> <param name="first" type="text" label="First Name" /> <param name="last" type="text" label="Last Name" /> </inputs> <outputs> <data format="txt" name="output" label="Apollo Credentials"/> </outputs> <tests> <test> <param name="first" value="first" /> <param name="last" value="last" /> <output name="output"> <assert_contents> <has_text text="Updated User" /> <has_text text="Password:" /> <has_text text="Return data:" /> <has_text text="alt_org" /> <has_text text="test_organism" /> </assert_contents> </output> </test> </tests> <help><![CDATA[ **What it does** Registers an account with Apollo. Just click run, then view the output file for your password. @REFERENCES@ ]]></help> <expand macro="citations"/> </tool>