annotate basicplot.xml @ 0:da8c70a64f0c draft default tip

planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
author chaimae_eljaouhari
date Fri, 31 Mar 2017 07:23:53 -0400
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
1 <tool id="Basicplot" name="basicplot" version="0.9.0">
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
2 <description>Basic plot</description>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
3 <requirements>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
4 <requirement type="package" version="3.1.2">R</requirement>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
5 </requirements>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
6 <command><![CDATA[
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
7 Rscript '$basicplot' "\${GALAXY_SLOTS:-1}"
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
8 ]]></command>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
9 <configfiles>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
10 <configfile name="basicplot">
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
11 <![CDATA[
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
12 ## Setup R error handling to go to stderr
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
13 options( show.error.messages=F, error = function () { cat( geterrmessage(), file=stderr() ); q( "no", 1, F ) } )
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
14 options(warn=-1)
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
15 Table = read.delim("${input}", header=TRUE)
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
16 pdf("${output}")
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
17 pairs(Table[ ,-1], main="${title}", log="xy", pch = 20)
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
18 dev.off()
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
19 ]]>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
20 </configfile>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
21 </configfiles>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
22 <inputs>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
23 <param name="input" type="data" format="tabular" label="tabular file"/>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
24 <param name="title" type="text" size="25" value="Title" label="Main Title"/>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
25 </inputs>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
26 <outputs>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
27 <data name="output" format="pdf" label="plot" />
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
28 </outputs>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
29 <tests>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
30 <test>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
31 <param name="input" value="data.tab" ftype="tabular"/>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
32 <param name="title" value="Title"/>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
33 <output name="output" file="basicplot.pdf" ftype="pdf"/>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
34 </test>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
35 </tests>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
36 <help>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
37
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
38 **What it does**
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
39
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
40 Take on tabular file of numerical data as input and produces pairwise plots of numerical data, in log-log scale.
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
41 The first column of the data frame is ignored.
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
42
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
43 Example of input data:
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
44
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
45 <![CDATA[
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
46
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
47 gene sample1 sample2 sample3 sample4 sample5 sample6
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
48
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
49 tRNA:Ala-AGC-2-3 4407 4506 2267 2423 2736 1153
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
50
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
51 tRNA:Asp-GTC-1-10 2111 2931 3302 3499 3809 1682
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
52
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
53 tRNA:Asp-GTC-1-11 2099 2936 3349 3556 4124 1629
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
54
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
55 tRNA:Glu-TTC-1-6 1095 1376 1189 1162 1120 561
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
56
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
57 tRNA:Glu-TTC-1-5 1022 1415 1156 1081 1120 578
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
58
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
59 tRNA:Glu-TTC-1-4 1047 1336 1156 1182 1127 602
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
60
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
61 tRNA:Glu-CTC-3-4 3613 3414 8161 9021 9776 5248
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
62
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
63 tRNA:Glu-CTC-3-5 3741 3292 7893 8845 9833 5074
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
64
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
65 tRNA:Glu-CTC-3-6 3619 3379 7663 8737 9513 5021
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
66
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
67 tRNA:Glu-CTC-3-8 7249 5809 80760 39479 62652 27404
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
68
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
69 tRNA:Glu-CTC-3-9 3770 3367 8007 8969 9976 5100
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
70
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
71 ]]>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
72
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
73
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
74 </help>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
75 <citations>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
76 <citation type="bibtex">
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
77 @Manual{,
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
78 title = {R: A Language and Environment for Statistical Computing},
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
79 author = {{R Core Team}},
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
80 organization = {R Foundation for Statistical Computing},
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
81 address = {Vienna, Austria},
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
82 year = {2014},
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
83 url = {http://www.R-project.org/},
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
84 }
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
85 </citation>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
86 </citations>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
87
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
88 </tool>
da8c70a64f0c planemo upload for repository https://github.com/chamaelj/tools-artbio/tree/master/tools/basicplot commit 09c37709000f22d9fb378ec1a4ec0e8f46e6bf73-dirty
chaimae_eljaouhari
parents:
diff changeset
89