Mercurial > repos > deepakjadmin > caret_tool1
comparison tool1V2.xml @ 4:dd73689fadf2 draft
Uploaded
author | deepakjadmin |
---|---|
date | Fri, 22 Jan 2016 11:42:28 -0500 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
3:91146e0cf2a4 | 4:dd73689fadf2 |
---|---|
1 <tool id="AdsmkdqaddodfdalV2" name="Prepare input file"> | |
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">CARET_TOOL1_PATH</requirement> | |
8 <requirement type="set_environment">R_ROOT_DIR</requirement> | |
9 <requirement type="package" version="3.2.0">R</requirement> | |
10 </requirements> | |
11 <command interpreter="Rscript">csv2rdatatrain.R $file1 $RData </command> | |
12 <inputs> | |
13 <param format="csv" name="file1" type="data" label="Select file containing training data" help="CSV format" /> | |
14 </inputs> | |
15 <outputs> | |
16 <data type="data" format="RData" name="RData" label="Input.RData" /> | |
17 </outputs> | |
18 <help> | |
19 .. class:: infomark | |
20 | |
21 **Input "csv file" format must be as given below :** | |
22 | |
23 | |
24 "",feature1,feaure2,feature3,..,activity | |
25 | |
26 | |
27 cpd1,623,0.4,3.4,..,Active | |
28 | |
29 cpd2,234,0.9,5.6,..,Inactive | |
30 | |
31 cpd3,567,0.5,3.14,..,Active | |
32 | |
33 cpd4,231,0.1,1.2,..,Inactive | |
34 | |
35 here "cpd" stands for name or id of a compound. It is rowname with no column header. | |
36 | |
37 | |
38 </help> | |
39 </tool> |