comparison caret_regression/tool3/tool3.xml @ 0:a4a2ad5a214e draft default tip

Uploaded
author deepakjadmin
date Thu, 05 Nov 2015 02:37:56 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a4a2ad5a214e
1 <tool id="tool3AAA" name="Predict Activity using regression model">
2 <description>
3 used to predict activity based on given regression model
4 </description>
5 <!--command interpreter="bash">step3run.sh $file1 $model $output1 2>/dev/null </command-->
6
7 <command interpreter="Rscript">predict.R $file1 $model $output1 2>/dev/null </command>
8
9 <inputs>
10 <param name="model" format="RData" type="data" label="Select Model" />
11 <param name="file1" format="csv" type="data" label="Select file have descriptor data for activity prediction" help="csv format" />
12 </inputs>
13 <outputs>
14 <data format="txt" name="output1" label="Prediction on $file1.name" />
15 </outputs>
16 <help>
17
18 .. class:: infomark
19
20 Make sure this file **must** contain **all** or **more features** than **input** "csv file" used for **model building**
21
22 ----------
23
24 **Input "csv file" must be as follows**
25
26 ----------
27
28
29 Example file:-
30
31
32
33 # example.csv
34
35 feature1,feature2,feature3,..,featureN
36
37 ro1 234,2.3,34,7,..,0.9
38
39 ro2 432,3.4,23.1,12,..,0.12
40
41 ro3 692,23,12.2,19,..,0.14
42
43
44 -----------
45
46 **MODEL**
47
48 Choose model file received from model building step.
49
50 Model file has "data" file format can be seen by
51
52 clicking on output files shown in history .
53
54
55 </help>
56 </tool>