Description Usage Arguments Details Value Functions Author(s) See Also Examples
Analyzes MSMS spectra of a compound by fitting formulas to each subpeak.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | analyzeMsMs(
msmsPeaks,
mode = "pH",
detail = FALSE,
run = "preliminary",
filterSettings = getOption("RMassBank")$filterSettings,
spectraList = getOption("RMassBank")$spectraList,
method = "formula"
)
analyzeMsMs.formula(
msmsPeaks,
mode = "pH",
detail = FALSE,
run = "preliminary",
filterSettings = getOption("RMassBank")$filterSettings
)
analyzeMsMs.intensity(
msmsPeaks,
mode = "pH",
detail = FALSE,
run = "preliminary",
filterSettings = getOption("RMassBank")$filterSettings
)
|
msmsPeaks |
A |
mode |
Specifies the processing mode, i.e. which molecule species the
spectra contain. |
detail |
Whether detailed return information should be provided
(defaults to |
run |
|
filterSettings |
Settings for the filter parameters, by default loaded from the RMassBank settings
set with e.g.
|
spectraList |
The list of MS/MS spectra present in each data block. As also defined in the settings file. |
method |
Selects which function to actually use for data evaluation. The default "formula" runs a full analysis via formula assignment to fragment peaks. The alternative setting "intensity" calls a "mock" implementation which circumvents formula assignment and filters peaks purely based on intensity cutoffs and the satellite filtering. (In this case, the ppm and dbe related settings in filterSettings are ignored.) |
The analysis function uses Rcdk. Note
that in this step, satellite peaks are removed by a simple heuristic
rule (refer to the documentation of filterPeakSatellites
for details.)
The processed RmbSpectraSet
object.
Added (or filled, respectively, since the slots are present before) data include
list("complete") |
whether all spectra have useful value |
list("empty") |
whether there are no useful spectra |
list("children") |
The processed
|
analyzeMsMs.formula
: Analyze the peaks using formula annotation
analyzeMsMs.intensity
: Analyze the peaks going only by intensity values
Michael Stravs
msmsWorkflow
, filterLowaccResults
,
filterPeakSatellites
, reanalyzeFailpeaks
1 | ## Not run: analyzed <- analyzeMsMs(spec, "pH", TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.