Description Usage Arguments Value Note Author(s) See Also Examples
Remove chromatographic peaks with a retention time range larger than the
provided maximal acceptable width (maxPeakwidth
).
1 2 3 4 | CleanPeaksParam(maxPeakwidth = 10)
## S4 method for signature 'XCMSnExp,CleanPeaksParam'
refineChromPeaks(object, param = CleanPeaksParam(), msLevel = 1L)
|
maxPeakwidth |
for |
object |
XCMSnExp object with identified chromatographic peaks. |
param |
|
msLevel |
|
XCMSnExp
object with chromatographic peaks exceeding the specified
maximal retention time width being removed.
refineChromPeaks
methods will always remove feature definitions, because
a call to this method can change or remove identified chromatographic peaks,
which may be part of features.
Johannes Rainer
Other chromatographic peak refinement methods:
MergeNeighboringPeaksParam
1 2 3 4 5 6 7 8 9 10 11 12 13 | ## Perform chromatographic peak detection on a test file.
fl <- system.file("microtofq/MM14.mzML", package = "msdata")
data <- readMSData(fl, mode = "onDisk")
data <- findChromPeaks(data, param = CentWaveParam(peakwidth = c(2, 8)))
## Distribution of chromatographic peak widths
quantile(chromPeaks(data)[, "rtmax"] - chromPeaks(data)[, "rtmin"])
## Remove all chromatographic peaks with a width larger 5 seconds
data <- refineChromPeaks(data, param = CleanPeaksParam(5))
quantile(chromPeaks(data)[, "rtmax"] - chromPeaks(data)[, "rtmin"])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.