Repository 'nepenthes_3dpca'
hg clone https://toolshed.g2.bx.psu.edu/repos/mb2013/nepenthes_3dpca

Changeset 8:0cb68fb9010f (2014-05-20)
Previous changeset 7:5aaede6275f9 (2014-05-20) Next changeset 9:2e8c9032e8d8 (2014-05-20)
Commit message:
Uploaded
added:
PCA_plot.xml
b
diff -r 5aaede6275f9 -r 0cb68fb9010f PCA_plot.xml
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/PCA_plot.xml Tue May 20 03:26:49 2014 -0400
b
@@ -0,0 +1,36 @@
+<tool id="PCA_plot" name="PCA_plot">
+  <description>Plottool for Principal Component </description>
+  <command interpreter="Rscript">PCA_plot.R $input "$title" "$x_label" "$y_label" $x_column $y_column $names $output</command>
+  <inputs>
+    <param name="input" type="data" format="csv" label="PCA coordinates" />
+    <param name = "title" size = "30" type = "text" value = "" label = "Main Title"/>
+    <param name = "x_label" size = "30" type = "text" value = "" label = "x axis label"/>
+    <param name = "y_label" size = "30" type = "text" value = "" label = "y axis label"/>
+    <param name = "x_column" size = "2" type = "integer" value = "1" label = "pca x axis"/>
+    <param name = "y_column" size = "2" type = "integer" value = "2" label = "pca y axis"/>
+    <param name = "names" type = "data" format = "csv" label = "data names"/>
+  </inputs>
+  <outputs>
+    <data format="png" name="output" />
+  </outputs>
+
+  
+  <help>
+**Function**
+
+Plottool for plotting of Principal Components
+
+**Input file**
+
+Principal Components coordinates (csv format)
+
+sample names (csv format)
+
+**Tip**
+
+Use **PCA** to generate Principal Components
+
+Use the sample names of **DtaConverter** or create your own 'sample name file' in .csv format
+  </help>
+
+</tool>