combineParams: Combining two lists of parameters together.

Description Usage Arguments Details Value Author(s) Examples

View source: R/utils.R

Description

This function combines two lists of parameters. The first is a list of parameters which should be optimized. These parameters have different values set by Design of Experimnt. The second list consists of parameters which should not be optimized, hence only one value is set for each parameter. The parameters of the second list are replicated to have the same length as the number experiments in the DoE. Then the two lists are combined.

Usage

1
combineParams(params_1, params_2)

Arguments

params_1

A list holding parameters which should be optimized. Each parameter already has value set for each experiment of an Design of Experiment.

params_2

A list holding parameters which should not be optimized, hence only one value is set.

Details

Special treatment is needed for the findPeaks.matchedFilter-parameters 'sigma', 'mzdiff' since these two parameters are defined by default relative to the parameters 'fwhm' or 'step' and 'steps' respectively.
sigma=fwhm/2.3548 mzdiff=0.8-step*steps

Value

A list of consting of all parameters needed for an xcms-method (findPeaks.centWave, findPeaks.matchedFilter, retcor.obiwarp or group.density). Each list item has the same length which is equal to the number of experiments within the DoE.

Author(s)

Gunnar Libiseller

Examples

1
2
3
4
5
6
params <- getDefaultXcmsSetStartingParams()
typ_params <- typeCastParams(params)
design <- getBbdParameter(typ_params$to_optimize) 
xcms_design <- decode.data(design) 
xcms_design <- combineParams(xcms_design, typ_params$no_optimization)  
xcms_design

IPO documentation built on Nov. 8, 2020, 8:31 p.m.