Learn R Programming

MALDIquant (version 1.11)

calibrateIntensity-methods: Calibrates intensities of a MassSpectrum object.

Description

This function calibrates (normalize) intensities of MassSpectrum objects.

Usage

## S3 method for class 'MassSpectrum':
calibrateIntensity(object,
  method=c("TIC", "PQN", "median"), ...)

Arguments

object
MassSpectrum object or a list of MassSpectrum objects.
method
the calibration method to be used. This should be one of "TIC", "PQN" or "median". See Details section.
...
arguments to be passed to other functions (unneeded until now).

Value

  • Returns a modified MassSpectrum object with calibrated intensities.

item

"Median":

code

MassSpectrum

Details

A number of different calibration methods are provided: [object Object],[object Object]

References

F. Dieterle, A. Ross, G. Schlotterbeck, and Hans Senn. 2006. Probabilistic quotient normalization as robust method to account for dilution of complex biological mixtures. Application in 1H NMR metabonomics. Analytical Chemistry 78(13): 4281-4290.

See Also

MassSpectrum

Website: http://strimmerlab.org/software/maldiquant/

Examples

Run this code
## load package
library("MALDIquant")

## load example data
data("fiedler2009subset", package="MALDIquant")

## baseline correction
b <- removeBaseline(fiedler2009subset)

## calibrate intensity values
calibrateIntensity(b, method="TIC")

Run the code above in your browser using DataLab