changeset 0:88fb39c1abcc

commit
author ryotas <yamanaka@genome.rcast.u-tokyo.ac.jp>
date Mon, 25 Jan 2016 22:36:29 +0900
parents
children 7bf7f2ae13f9
files hellogalaxy.sh hellogalaxy.xml
diffstat 2 files changed, 19 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/hellogalaxy.sh	Mon Jan 25 22:36:29 2016 +0900
@@ -0,0 +1,5 @@
+#!/bin/sh
+for (( i = 0 ; i < $1 ; i++ ))
+do
+  hellogalaxy
+done
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/hellogalaxy.xml	Mon Jan 25 22:36:29 2016 +0900
@@ -0,0 +1,14 @@
+<tool id="hellogalaxy" name="Hello Galaxy" version="0.0.1">
+  <description>for Testing</description>
+  <command interpreter="sh">
+    hellogalaxy.sh $num > $outfile
+  </command>
+  <inputs>
+    <param name="num" type="integer" value="10" label="How many times?" />
+  </inputs>
+  <outputs>
+    <data format="tabular" name="outfile" label="${tool.name} on ${on_string}" />
+  </outputs>
+  <help>
+  </help>
+</tool>