0
|
1 <tool id="ipo" name="XCMS - IPO" version="0.1.0">
|
|
2 <description>: A Tool for automated Optimization of XCMS Parameters</description>
|
|
3 <command interpreter="Rscript">ipo.R $input $html_file $html_file.files_path</command>
|
|
4 <inputs>
|
|
5 <param format="cdf" name="input" type="data" label="Source file"/>
|
|
6 </inputs>
|
|
7 <outputs>
|
|
8 <data format="html" name="html_file" label="ipo_output.html"/>
|
|
9 </outputs>
|
|
10 <help>
|
|
11 **IPO - Version 0.1**
|
|
12
|
|
13 Version 0.1 uses the following XCMS parameters as default
|
|
14
|
|
15 > peakpickingParameters$min_peakwidth : c(10,20)
|
|
16
|
|
17 > peakpickingParameters$max_peakwidth : c(26,42)
|
|
18
|
|
19 > peakpickingParameters$ppm : 20
|
|
20
|
|
21 > peakpickingParameters$nSlaves : 4 # as.numeric(args[3])
|
|
22
|
|
23 > type : "centWave"
|
|
24
|
|
25 -----
|
|
26
|
|
27 **IPO optimization process**
|
|
28
|
|
29 .. image:: ${static_path}/images/ipo.jpg
|
|
30 :height: 400
|
|
31 :width: 429
|
|
32
|
|
33 -----
|
|
34
|
|
35 To optimize parameters different values (levels) have to tested for these parameters. To efficiently test many different levels design of experiment (DoE) is used. Box-Behnken and central composite designs set three evenly spaced levels for each parameter. The method 'getDefaultXcmsSetStartingParams' provides default values for the lower and upper levels defining a range. Since the levels are evenly spaced the middle level or center point is calculated automatically. To edit the starting levels of a parameter set the lower and upper level as desired. If a parameter should not be optimized, set a single default value for 'xcms' processing, do not set this parameter to NULL.
|
|
36
|
|
37 The method 'getDefaultXcmsSetStartingParams' creates a list with default values for the optimization of the peak picking methods 'centWave' or 'matchedFilter'. To choose between these two method set the parameter accordingly.
|
|
38
|
|
39 -----
|
|
40
|
|
41 The method 'optimizeXcmsSet' has the following parameters:
|
|
42
|
|
43 > **files**: the raw data which is the basis for optimization. This does not necessarly need to be the whole dataset, only quality controls should suffice.
|
|
44
|
|
45 > **params**: a list consisting of items named according to 'xcms' peak picking methods parameters. A default list is created by 'getDefaultXcmsSetStartingParams'.
|
|
46
|
|
47 > **nSlaves**: the number ofexperiments of an DoE processed in parallel
|
|
48
|
|
49 > **subdir**: a directory where the response surface models are stored. Can also be NULL if no rsm's should be saved.
|
|
50 </help>
|
|
51 </tool> |