changeset 1:6e7cf5ed7d62 draft

Uploaded
author mb2013
date Tue, 20 May 2014 03:24:40 -0400
parents aae5945b961e
children a2aa2125087e
files converter.xml
diffstat 1 files changed, 38 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/converter.xml	Tue May 20 03:24:40 2014 -0400
@@ -0,0 +1,38 @@
+<tool id="DtaConverter" name="DtaConverter">
+  <description>convert multiple dta files to one csv file</description>
+  <command interpreter="python">
+    converter.py 
+    --output $output
+    --output2 $output2
+    
+    #for $input in $inputs:
+    --input_file '$input'
+    --input_name '$input.display_name'
+    #end for
+  </command>
+  <inputs>
+    <param name="inputs" type="data" multiple="true" label="Inputs" />
+    
+  </inputs>
+  <outputs>
+    <data format="csv" name="output" label="Convertion of ${on_string}" />
+    <data format = "csv" name = "output2" label = "sample_names" />
+  </outputs>
+  <help>
+	**Function**
+
+	This tool can convert multiple .dta files to one .csv file with coordinates 
+	and one .csv file with names of the samples.
+
+	
+
+	**Input file**
+
+	.dta file created by:
+
+	Created by Landmark. http://graphics.idav.ucdavis.edu/research/EvoMorph
+
+
+
+  </help>
+</tool>