changeset 5:039e2778410a draft

Uploaded
author mb2013
date Wed, 20 Nov 2013 07:16:00 -0500
parents 7c2cca12ab39
children 692262de2de2
files convert_multiple_dta_to_csv.xml
diffstat 1 files changed, 41 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/convert_multiple_dta_to_csv.xml	Wed Nov 20 07:16:00 2013 -0500
@@ -0,0 +1,41 @@
+<tool id="dtaConverter2" name="dtaConverter2">
+    <description>convert multiple dta files to one csv file</description>
+    <command interpreter="python">
+        convert_multiple_dta_to_csv.py
+        $output
+        $output2
+        $input1
+        #for $q in $queries
+            ${q.input2}
+        #end for
+    </command>
+    <inputs>
+        <param name="input1" type="data" label="Convert dta"/>
+        <repeat name="queries" title="Dataset">
+            <param name="input2" type="data" label="Select" />
+        </repeat>
+    </inputs>
+    <outputs>
+        <data format="csv" name="output" />
+        <data format="csv" name="output2" />
+    </outputs>
+
+  
+  <help>
+**What it does**
+
+This tool can convert multiple .dta files to one .csv file with coordinates and one .csv file with names of the samples.
+
+Press the button 'Add new Dataset' to add more .dta files. 
+
+**Input file**
+
+.dta file created by:
+
+Created by Landmark. http://graphics.idav.ucdavis.edu/research/EvoMorph
+
+
+
+  </help>
+
+</tool>