1
|
1 <tool id="DtaConverter" name="DtaConverter">
|
|
2 <description>convert multiple dta files to one csv file</description>
|
|
3 <command interpreter="python">
|
|
4 converter.py
|
|
5 --output $output
|
|
6 --output2 $output2
|
|
7
|
|
8 #for $input in $inputs:
|
|
9 --input_file '$input'
|
|
10 --input_name '$input.display_name'
|
|
11 #end for
|
|
12 </command>
|
|
13 <inputs>
|
|
14 <param name="inputs" type="data" multiple="true" label="Inputs" />
|
|
15
|
|
16 </inputs>
|
|
17 <outputs>
|
|
18 <data format="csv" name="output" label="Convertion of ${on_string}" />
|
|
19 <data format = "csv" name = "output2" label = "sample_names" />
|
|
20 </outputs>
|
|
21 <help>
|
|
22 **Function**
|
|
23
|
|
24 This tool can convert multiple .dta files to one .csv file with coordinates
|
|
25 and one .csv file with names of the samples.
|
|
26
|
|
27
|
|
28
|
|
29 **Input file**
|
|
30
|
|
31 .dta file created by:
|
|
32
|
|
33 Created by Landmark. http://graphics.idav.ucdavis.edu/research/EvoMorph
|
|
34
|
|
35
|
|
36
|
|
37 </help>
|
|
38 </tool>
|