changeset 15:9178c17023aa draft

Uploaded
author nicolas
date Fri, 21 Oct 2016 06:29:45 -0400
parents 4d21b6806e19
children f9d2d5058395
files rrBLUP.xml
diffstat 1 files changed, 39 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rrBLUP.xml	Fri Oct 21 06:29:45 2016 -0400
@@ -0,0 +1,39 @@
+<tool id="rrBLUP" name="rrBLUP" version="1.0.0">
+  <description>predict phenotype using a rrBLUP approach</description>
+  <command interpreter="Rscript">
+	  rrBLUP.R $config &gt; ${output1}
+  </command>
+  
+  <inputs>
+	<param name="genotype" type="data"
+		label="genotype data" help="a tabular datatype containing the encoded genotypes" 
+	/>
+		  
+	<param name="phenotype" type="data"
+			label="phenotype data" help=" a tabular datatype containing the phenotypes " 
+			/>
+		
+	<param name="model" type="text"
+			label="path to the output folds" help= " a path to a file where the results (depending on the chosen mode) will be writen" 
+	/>
+  </inputs>
+  
+  <configfiles>
+    <configfile name="config">
+## Desc: this file is sourced in encode wrapper script
+##  as means to pass all galaxy params to R
+"${genotype}" -> genotype
+"${phenotype}" -> phenotype
+"${model}" -> out
+
+    </configfile>
+</configfiles>
+  
+<outputs>
+	<data format="tabular" name = "output1" label="rrBLUP output" />
+</outputs>
+  
+  <help>
+	  make the classification using the rrBLUP method
+  </help>
+  </tool>
\ No newline at end of file