diff 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
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/create_account.xml	Mon Sep 11 05:45:08 2017 -0400
@@ -0,0 +1,42 @@
+<?xml version="1.0"?>
+<tool id="create_account" name="Register Account" version="3.0">
+  <description>with Apollo</description>
+  <macros>
+    <import>macros.xml</import>
+  </macros>
+  <expand macro="requirements"/>
+  <command detect_errors="aggressive"><![CDATA[
+python $__tool_directory__/create_account.py
+
+@ADMIN_AUTH@
+
+$__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 expect_failure="true">
+          <param name="first" value="first" />
+          <param name="last" value="last" />
+
+          <expand macro="test_result" />
+      </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>