comparison feature_selection.xml @ 5:24f2624e8a55 draft default tip

planemo upload commit 2797c26edc75e09465ee41fe44091a39d49b36ab-dirty
author anmoljh
date Fri, 06 Apr 2018 08:46:01 -0400
parents e7561ef82bf1
children
comparison
equal deleted inserted replaced
4:e7561ef82bf1 5:24f2624e8a55
10 10
11 <stdio> 11 <stdio>
12 <exit_code range="1:" /> 12 <exit_code range="1:" />
13 </stdio> 13 </stdio>
14 14
15 <command interpreter="Rscript">feature_selection.R $input $profile $finalset $function1 $resampling $repeat $number $corcutoff $SAMPLING $cores> /dev/null 2>&amp;1 </command> 15 <command interpreter="Rscript">feature_selection.R $input $profile $finalset $function1 $resampling $repeat $number $corcutoff $SAMPLING \${GALAXY_SLOTS:-1} >/dev/null 2>&amp;1 </command>
16 16
17 <inputs> 17 <inputs>
18 <param name="input" type="data" format="rdata" label="Select input data file" help="input .RData file" /> 18 <param name="input" type="data" format="rdata" label="Select input data file" help="input .RData file" />
19 <param name="SAMPLING" type="select" label="Select Sampling Method for imbalanced data" help="Defualt is with No sampling. you may choose downsample or upsample" > 19 <param name="SAMPLING" type="select" label="Select Sampling Method for imbalanced data" help="Defualt is with No sampling. you may choose downsample or upsample" >
20 <option value="garBage" selected="true">No Sampling</option> 20 <option value="garBage" selected="true">No Sampling</option>
21 <option value="downsampling">downsample</option> 21 <option value="downsampling">downsample</option>
22 <option value="upsampling">upsample</option> 22 <option value="upsampling">upsample</option>
23 </param> 23 </param>
24 <param name="function1" type="select" display="radio" label="Select appropriate function for algorithm" > 24 <param name="function1" type="select" display="radio" label="Select appropriate function for algorithm" >
25 <option value="rfFuncs" selected="true">random forest based function </option> 25 <option value="rfFuncs" selected="true">random forest based function </option>
26 <option value="lmFuncs">linear model based function</option> 26 <option value="lmFuncs">linear model based function</option>
27 <option value="treebagFuncs">treebag(CART) based function</option> 27 <option value="treebagFuncs">treebag(CART) based function</option>
28 <option value="nbFuncs">neive bayes based function</option> 28 <option value="nbFuncs">neive bayes based function</option>
29 </param> 29 </param>
30 30
31 <param name="cores" type="select" label="Set Number of Cores " help="default is 1"> 31 <param name="corcutoff" type="float" value= "0.8" min="0.0" max = "1.0" label="Select correlation cutoff" help="values bewteen 0-1. fileds above cufoff value removed from data " />
32 <option value="1" selected="true">1</option> 32 <param name="resampling" type="select" label="Select appropriate resampling method" >
33 <option value="4">4</option>
34 <option value="8">8</option>
35 <option value="10">10</option>
36 <option value="16">16</option>
37 </param>
38
39
40 <param name="corcutoff" type="float" value= "0.8" min="0.0" max = "1.0" label="Select correlation cutoff" help="values bewteen 0-1. fileds above cufoff value removed from data " />
41 <param name="resampling" type="select" label="Select appropriate resampling method" >
42 <option value="repeatedcv" selected="true">repeatedcv </option> 33 <option value="repeatedcv" selected="true">repeatedcv </option>
43 <option value="boot">boot</option> 34 <option value="boot">boot</option>
44 <option value="cv">cv</option> 35 <option value="cv">cv</option>
45 <option value="boot632">boot632</option> 36 <option value="boot632">boot632</option>
46 </param> 37 </param>
47 <param name="repeat" type="select" label="Set Number of times to repeat" help="default is 3 "> 38
39 <param name="repeat" type="select" label="Set Number of times to repeat" help="default is 3 ">
48 <option value="3" selected="true">3</option> 40 <option value="3" selected="true">3</option>
49 <option value="5">5</option> 41 <option value="5">5</option>
50 <option value="7">7</option> 42 <option value="7">7</option>
51 <option value="10">10</option> 43 <option value="10">10</option>
52 </param> 44 </param>
53 <param name="number" type="select" label="Set Number of times Resample" help="default is 10"> 45 <param name="number" type="select" label="Set Number of times Resample" help="default is 10">
54 <option value="10" selected="true">10</option> 46 <option value="10" selected="true">10</option>
55 <option value="5">5</option> 47 <option value="5">5</option>
56 <option value="15">15</option> 48 <option value="15">15</option>
57 <option value="20">20</option> 49 <option value="20">20</option>
58 <option value="25">25</option> 50 <option value="25">25</option>
59 </param> 51 </param>
60
61 </inputs> 52 </inputs>
62 53
63 <outputs> 54 <outputs>
64 <data format="data" name="profile" label="$function1-profile" /> 55 <data format="data" name="profile" label="$function1-profile" />
65 <data format="rdata" name="finalset" label="Selected_feature.RData "/> 56 <data format="rdata" name="finalset" label="Selected_feature.RData "/>