Mercurial > repos > iuc > reshape2_cast
annotate cast.xml @ 0:d3b66a3a08ca draft default tip
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
author | iuc |
---|---|
date | Tue, 22 Aug 2017 07:44:04 -0400 |
parents | |
children |
rev | line source |
---|---|
0
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
1 <tool id="cast" name="cast" version="@VERSION@"> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
2 <description>expand combinations of variables:values to columnar format</description> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
3 <macros> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
4 <import>macros.xml</import> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
5 </macros> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
6 <expand macro="requirements"></expand> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
7 <command detect_errors="exit_code"><![CDATA[ |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
8 cat '$script' && |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
9 Rscript '$script' |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
10 ]]></command> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
11 <configfiles> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
12 <configfile name="script"><![CDATA[ |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
13 ## Setup R error handling to go to stderr |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
14 options(show.error.messages=F, error=function(){cat(geterrmessage(),file=stderr());q("no",1,F)}) |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
15 loc <- Sys.setlocale("LC_MESSAGES", "en_US.UTF-8") |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
16 |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
17 ## Import library |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
18 library("reshape2") |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
19 |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
20 input <- read.csv('$input', sep='\t', header=TRUE) |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
21 cinput <- dcast(input, ... ~ variable) |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
22 write.table(cinput, "output.tabular", sep="\t", quote=FALSE, row.names=FALSE) |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
23 |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
24 ]]></configfile> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
25 </configfiles> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
26 <inputs> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
27 <param name="input" type="data" format="tabular" label="Input should be molten data"/> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
28 </inputs> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
29 <outputs> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
30 <data name="output" format="tabular" from_work_dir="output.tabular"/> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
31 </outputs> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
32 <tests> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
33 <test> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
34 <param name="input" value="melt_result1.tabular"/> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
35 <output name="output" file="cast_result1.tabular"/> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
36 </test> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
37 </tests> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
38 <help><![CDATA[ |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
39 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. |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
40 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 |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
41 ]]></help> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
42 <citations> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
43 <citation type="bibtex"> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
44 @Article{, |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
45 title = {Reshaping Data with the {reshape} Package}, |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
46 author = {Hadley Wickham}, |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
47 journal = {Journal of Statistical Software}, |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
48 year = {2007}, |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
49 volume = {21}, |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
50 number = {12}, |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
51 pages = {1--20}, |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
52 url = {http://www.jstatsoft.org/v21/i12/}, |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
53 } |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
54 </citation> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
55 </citations> |
d3b66a3a08ca
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/reshape2 commit 62172bde663955b6c3cb86dc22c47739824f014a
iuc
parents:
diff
changeset
|
56 </tool> |