|
13
|
1 <tool id="plotPCACsize" name="plotPCACsize">
|
|
|
2 <description>Plottool for pca and csize</description>
|
|
|
3 <command interpreter="Rscript">plotPCACsize.R $input_PCA $input_Csize "$title" "$x_label" "$y_label" $x_column $names $output</command>
|
|
|
4 <inputs>
|
|
|
5 <param name="input_PCA" type="data" format="csv" label="PC" />
|
|
|
6 <param name="input_Csize" type="data" format="csv" label="Csize procrustes" />
|
|
|
7 <param name = "title" size = "30" type = "text" value = "" label = "Main Title"/>
|
|
|
8 <param name = "x_label" size = "30" type = "text" value = "" label = "x axis label"/>
|
|
|
9 <param name = "y_label" size = "30" type = "text" value = "" label = "y axis label"/>
|
|
|
10 <param name = "x_column" size = "2" type = "text" value = "1" label = "Pca "/>
|
|
|
11 <param name = "names" type = "data" format = "csv" label = "data names"/>
|
|
|
12 </inputs>
|
|
|
13 <outputs>
|
|
|
14 <data format="png" name="output" />
|
|
|
15 </outputs>
|
|
|
16
|
|
|
17
|
|
|
18 <help>
|
|
|
19 **What it does**
|
|
|
20
|
|
|
21 Plottool for plotting of principle component with centroid size
|
|
|
22
|
|
|
23 **Input file**
|
|
|
24
|
|
|
25 principle components coordinates (csv format)
|
|
|
26
|
|
|
27 centroid size of samples (csv format)
|
|
|
28
|
|
|
29 **Tip**
|
|
|
30
|
|
|
31 Use **PCA** to generate principle components
|
|
|
32
|
|
|
33 Use **Procrustes** to generate centroid size
|
|
|
34
|
|
|
35
|
|
|
36 </help>
|
|
|
37
|
|
|
38 </tool>
|