findChromPeaks | R Documentation |
The findChromPeaks
method performs chromatographic peak detection on
LC/GC-MS data. The peak detection algorithm can be selected, and configured,
using the param
argument.
Supported param
objects are:
CentWaveParam()
: chromatographic peak detection using the centWave
algorithm.
CentWavePredIsoParam()
: centWave with predicted isotopes. Peak
detection uses a two-step centWave-based approach considering also feature
isotopes.
MatchedFilterParam()
: peak detection using the matched filter
algorithm.
MassifquantParam()
: peak detection using the Kalman filter-based
massifquant method.
MSWParam()
: single-spectrum non-chromatography MS data peak detection.
For specific examples see the help pages of the individual parameter classes listed above.
findChromPeaks(object, param, ...)
## S4 method for signature 'MsExperiment,Param'
findChromPeaks(
object,
param,
msLevel = 1L,
chunkSize = 2L,
...,
BPPARAM = bpparam()
)
## S4 method for signature 'XcmsExperiment,Param'
findChromPeaks(
object,
param,
msLevel = 1L,
chunkSize = 2L,
add = FALSE,
...,
BPPARAM = bpparam()
)
object |
The data object on which to perform the peak detection. Can be
an |
param |
The parameter object selecting and configuring the algorithm. |
... |
Optional parameters. |
msLevel |
|
chunkSize |
|
BPPARAM |
Parallel processing setup. Uses by default the system-wide
default setup. See |
add |
|
Johannes Rainer
plotChromPeaks()
to plot identified chromatographic peaks for one file.
refineChromPeaks()
for methods to refine or clean identified
chromatographic peaks.
manualChromPeaks()
to manually add/define chromatographic peaks.
Other peak detection methods:
findChromPeaks-centWave
,
findChromPeaks-centWaveWithPredIsoROIs
,
findChromPeaks-massifquant
,
findChromPeaks-matchedFilter
,
findPeaks-MSW
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.