Mercurial > repos > deepakjadmin > r_caret_test2_jan
comparison r_caret_test1-revision_toolshed/tool1V2.xml @ 0:39926de9e698 draft default tip
Uploaded
author | deepakjadmin |
---|---|
date | Wed, 06 Jan 2016 02:33:31 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:39926de9e698 |
---|---|
1 <tool id="aacaret001" name="Prepare input file for classification model"> | |
2 <description> | |
3 This Tool Converts Input csv File into RData Which Is Further Used for Model Building | |
4 </description> | |
5 <!--command interpreter="bash">step1.sh $file1 $output1 </command--> | |
6 <requirements> | |
7 <requirement type="set_environment">R_ROOT_DIR</requirement> | |
8 <requirement type="package" version="3.2.0">R</requirement> | |
9 </requirements> | |
10 <command interpreter="Rscript">caret_future/tool1/csv2rdatatrain.R $file1 $RData </command> | |
11 <inputs> | |
12 <param format="csv" name="file1" type="data" label="Select file containing training data" help="CSV format" /> | |
13 </inputs> | |
14 <outputs> | |
15 <data format="RData" name="RData" label="Input RData" /> | |
16 </outputs> | |
17 <help> | |
18 .. class:: infomark | |
19 | |
20 **Input "csv file" format must be as given below :** | |
21 | |
22 | |
23 "",feature1,feaure2,feature3,..,activity | |
24 | |
25 | |
26 cpd1,623,0.4,3.4,..,Active | |
27 | |
28 cpd2,234,0.9,5.6,..,Inactive | |
29 | |
30 cpd3,567,0.5,3.14,..,Active | |
31 | |
32 cpd4,231,0.1,1.2,..,Inactive | |
33 | |
34 here "cpd" stands for name or id of a compound. It is rowname with no column header. | |
35 | |
36 | |
37 </help> | |
38 </tool> |