mzR
Dependencies & Environment
Package-intrinsic requirements from the Bioconductor landing page — reproduce in any R environment.
- Version: 2.46.0 · Bioconductor: 3.23 · R: ≥ 4.6
- Depends: Rcpp
- Imports: Biobase, BiocGenerics, ProtGenerics, ncdf4
- System requirements: C++11, GNU make
- Install:
BiocManager::install("mzR")
When to Use
- Low-Level Raw Data Access: High-performance reading of raw mass spectrometry data formats (mzML, mzXML, netCDF) using
openMSfile(). - Metadata Extraction: Accessing metadata, instrument configurations, run summaries, and individual scan headers from raw MS files using
runInfo(),instrumentInfo(), andheader(). - Spectral Extraction: Extracting raw mass spectra (m/z and intensity arrays) using the
peaks()function. - Fast ID Parsing: Reading mzIdentML (.mzid) files rapidly using the C++ ProteoWizard parser backend via
openIDfile().
When NOT to Use
- For high-level, user-friendly mass spectrometry data manipulation and processing, use
MSnbaseinstead becausemzRis strictly a low-level data access API. - For high-level metabolomics preprocessing (peak picking, alignment), use
xcmsinstead becausemzRdoes not provide these algorithms natively.
Data Requirements
- Input: Raw mass spectrometry files in standard open formats:
.mzML,.mzXML,.cdf(netCDF), or.mzid(for identifications).
Key Parameters
- filename: Path to the raw mass spectrometry or identification file passed to
openMSfile()oropenIDfile().
Best Practices
- Close File Connections: Always close the file connection using
close()when not needed anymore to release the memory of cached content. - Header-First Inspection: Use
header()to retrieve a summary of all scans (retention time, MS level, precursor m/z) before loading heavy raw spectral arrays withpeaks(). - Check Peak Counts: Use
peaksCount()to determine the number of peaks in a spectrum before extracting the full m/z and intensity matrices.
Common Pitfalls
- Memory Leaks: Forgetting to close file handles after extracting data, leading to exhausted memory. Fix: Always call
close()on the opened file object when finished. - Direct Usage for Complex Workflows: Attempting to build complex processing pipelines directly on top of
mzRpointers. Fix: UseMSnbase(with on-disk mode) which usesmzRinternally but offers a coherent, high-level S4 interface.
Alternatives
- MSnbase: For a comprehensive, high-level container handling both raw spectra and metadata, supporting reading multiple files at once.
- xcms: For comprehensive metabolomics preprocessing pipelines (peak alignment, matching, and identification).
Citations
- Chambers M, Maclean B, Burke R, Amodei D, Ruderman DL, Neumann S, Gatto L, Mallick P (2012). "A cross-platform toolkit for mass spectrometry and proteomics." Nature Biotechnology, 30(10), 918-920.
- Kessner D, Chambers M, Burke R, Agus D, Mallick P (2008). "ProteoWizard: Open Source Software for Rapid Proteomics Tools Development." Bioinformatics, 24(21), 2534-2536.
References
- Homepage: https://bioconductor.org/packages/mzR
- Vignette: https://bioconductor.org/packages/release/bioc/vignettes/mzR/inst/doc/mzR.html
Run this on BioMate
This skill is the knowledge layer — when, why, and how to use mzr. To run this analysis on your own data with managed compute, automated QC, and reproducible outputs, use BioMate — free to start.