Mercurial > repos > fubar > weblogo3
comparison rgweblogo/rgWebLogo3.xml @ 0:cec2527697f6
Migrated tool version 0.1 from old tool shed archive to new tool shed repository
author | fubar |
---|---|
date | Tue, 07 Jun 2011 17:43:58 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:cec2527697f6 |
---|---|
1 <tool id="weblogo3" name="Sequence Logo" version="0.1"> | |
2 <description>generator for fasta (eg Clustal alignments)</description> | |
3 <command> | |
4 weblogo -F $outformat -s $size -f $input -o $output -t "$logoname" | |
5 </command> | |
6 <inputs> | |
7 <page> | |
8 <param format="fasta" name="input" type="data" label="Fasta File" /> | |
9 <param name="logoname" label="Name for output logo - will appear on graphics" type="text" size="50" value="Galaxy/Rgenetics weblogo" /> | |
10 <param name="outformat" type="select" label="Output weblogo format" > | |
11 <option value="png" selected="True">PNG screen quality</option> | |
12 <option value="png_print">High quality printable PNG</option> | |
13 <option value="pdf">PDF</option> | |
14 <option value="jpeg">JPG</option> | |
15 <option value="eps">EPS</option> | |
16 <option value="txt">Text (shows the detailed calculations for each position - no image)</option> | |
17 </param> | |
18 <param name="size" type="select" label="Output weblogo size" > | |
19 <option value="large" selected="True">Large</option> | |
20 <option value="medium">Medium</option> | |
21 <option value="small">Small</option> | |
22 </param> | |
23 </page> | |
24 </inputs> | |
25 <outputs> | |
26 <data format="pdf" name="output" label="${logoname}_output.${outformat}"> | |
27 <change_format> | |
28 <when input="outformat" value="png_print" format="png" /> | |
29 <when input="outformat" value="png" format="png" /> | |
30 <when input="outformat" value="jpeg" format="jpg" /> | |
31 <when input="outformat" value="eps" format="eps" /> | |
32 <when input="outformat" value="txt" format="txt" /> | |
33 </change_format> | |
34 </data> | |
35 </outputs> | |
36 <tests> | |
37 <test> | |
38 | |
39 <param name="input" value="rgClustal_testout.fasta" /> | |
40 <param name = "logoname" value="Galaxy/Rgenetics weblogo" /> | |
41 <param name = "outformat" value="jpeg" /> | |
42 <param name = "size" value="medium" /> | |
43 | |
44 <output name="output" file="rgWebLogo3_test.jpg" ftype="jpg" /> | |
45 </test> | |
46 | |
47 </tests> | |
48 <help> | |
49 | |
50 **Note** | |
51 | |
52 This tool uses Weblogo3_ in Galaxy to generate a sequence logo. The input file must be a fasta file in your current history. | |
53 | |
54 A typical output looks like this | |
55 | |
56 .. image:: ./static/images/rgWebLogo3_test.jpg | |
57 | |
58 ---- | |
59 | |
60 **Why use WebLogo in Galaxy?** | |
61 | |
62 Weblogo3_ is a good example of an easy to use tool and there are plenty of other web accessible weblogo generator sites available. | |
63 | |
64 However, none of those offer the combination of: | |
65 | |
66 1) persistence of analyses and data in multiple shareable histories, pages and libraries | |
67 | |
68 2) convenient access to shared data libraries, workflows and user controlled pages, and to 3rd party data sources like UCSC tables. | |
69 | |
70 3) analyses integrated with many other applicable generic and specialized tools already available for downstream processing. | |
71 | |
72 that you get for free when you use Galaxy. No muss; no fuss. | |
73 | |
74 ---- | |
75 | |
76 **Attribution** | |
77 | |
78 Weblogo attribution and associated documentation are available at Weblogo3_ | |
79 | |
80 This wrapper was written by Ross Lazarus for the rgenetics project and the source code is licensed under the LGPL_ like other rgenetics artefacts | |
81 | |
82 .. _Weblogo3: http://weblogo.berkeley.edu/ | |
83 | |
84 .. _LGPL: http://www.gnu.org/copyleft/lesser.html | |
85 | |
86 </help> | |
87 | |
88 </tool> | |
89 | |
90 |