GetAreaArray: Get Array of LC-MS Area signals

Description Usage Arguments Value Examples

Description

Batch analog of GetArea function. Gets List of data frames where each data frame contains all non-zero signals for one of specified LC-MS areas. Equal length of incoming lists is assumed. Corresponds to mzAccess web-service API function GetAreasArray

Usage

1
2
GetAreaArray(FileNames, MZLows, MZHighs, RTLows, RTHighs, Cache = TRUE,
  Profile = FALSE)

Arguments

FileNames

- List of names of original raw mass spectrometry file.

Cache

- If TRUE data will be loaded from fast access cache, if FALSE - from original raw files

Profile

- If TRUE data will presented in profile mode how is was acquired by mass spectrometer, If FALSE data will be presented in peak centroided mode

MZLow

- List of minimum m/z values for LC-MS areas requested

MZHigh

- List of maximum m/z values for LC-MS areas requested

RTLow

- List of minimum retention time values for LC-MS areas requested

RTHigh

- List of maximum retention time values for LC-MS areas requested

Value

List of data frames. Each n-th data frame contains Mass, Retention Time and Intensities for all non-zero signals for LC-MS area, specified by n-th members of incoming arrays.

Examples

1
2
3
4
5
6
7
8
Coordinates for the glutamate peak observed in Figure 2A in reference paper
mz0 <- 148.0604342; dMz <- 0.002; d13C <- 1.0033548378;rtMin <- 8; rtMax <- 9;
Get MZ/RT areas for 1-st and 6-th isotopes
Areas <- GetAreaArray(
 rep("Thermo_QE_cells_72h_LA_1", 2),
 c(mz0-dMz, mz0 + 5*d13C - dMz),
 c(mz0+dMz, mz0 + 5*d13C + dMz),
 rep(rtMin, 2), rep(rtMax, 2))

Yaroslav-Lyutvinskiy/MZAccessR documentation built on May 10, 2019, 12:06 a.m.