comparison cast.xml @ 3:d7e3814be68e draft default tip

Uploaded
author moheydarian
date Mon, 13 Mar 2017 11:00:51 -0400
parents 25701d50da89
children
comparison
equal deleted inserted replaced
2:29110e59067f 3:d7e3814be68e
1 <tool id="cast" name="cast" version="0.0.1"> 1 <tool id="cast" name="cast" version="0.0.2">
2 <description>collapse combinations of variables:values to single lines</description> 2 <description>expand combinations of variables:values to columnar format</description>
3 <requirements> 3 <requirements>
4 <requirement type="package">r-getopt</requirement> 4 <requirement type="package">r-getopt</requirement>
5 <requirement type="package">r-reshape2</requirement> 5 <requirement type="package">r-reshape2</requirement>
6 </requirements> 6 </requirements>
7 <stdio> 7 <stdio>
23 <output name="output1" file="output.tabular"/> 23 <output name="output1" file="output.tabular"/>
24 </test> 24 </test>
25 </tests> 25 </tests>
26 <help><![CDATA[ 26 <help><![CDATA[
27 This tool will apply the dcast function of the reshape2 R package. The input data should be in a 'long' format or molten by the melt tool. The output will be in a wide format. 27 This tool will apply the dcast function of the reshape2 R package. The input data should be in a 'long' format or molten by the melt tool. The output will be in a wide format.
28 The cast function summarizes each unique variable:value combination on a single line. An example can be found here: http://www.statmethods.net/management/reshape.html. Documantation on the reshape2 package can be found here: https://cran.r-project.org/web/packages/reshape2/reshape2.pdf 28 The cast function expands each unique variable:value combination on a single line to columnar format. Documantation on the reshape2 package can be found here: https://cran.r-project.org/web/packages/reshape2/reshape2.pdf
29 ]]></help> 29 ]]></help>
30 <citations> 30 <citations>
31 <citation type="bibtex"> 31 <citation type="bibtex">
32 @misc{renameTODO, 32 @misc{renameTODO,
33 author = {TODO, FirstTODO}, 33 author = {TODO, FirstTODO},