Mercurial > repos > mb2013 > naturalis_internship
changeset 1:9749a07af98d draft
Uploaded
author | mb2013 |
---|---|
date | Wed, 20 Nov 2013 03:53:25 -0500 |
parents | 95b56ae07b7d |
children | aaff472985f1 |
files | convert_multiple_dta_to_csv.xml |
diffstat | 1 files changed, 28 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 03:53:25 2013 -0500 @@ -0,0 +1,28 @@ +<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> +convert dta to csv + </help> + +</tool>