pmd: Paired Mass Distance Analysis for GC/LC-MS Based Non-Targeted Analysis and Reactomics Analysis

CRAN status Download counter Project Status: Active - The project has reached a stable, usable state and is being actively developed. Build status

Paired mass distance (PMD) analysis proposed in Yu, Olkowicz and Pawliszyn (2018) and PMD based reactomics proposed in Yu and Petrick (2020) for gas/liquid chromatography–mass spectrometry (GC/LC-MS) based non-targeted analysis. PMD analysis including GlobalStd algorithm and structure/reaction directed analysis. GlobalStd algorithm could found independent peaks in m/z-retention time profiles based on retention time hierarchical cluster analysis and frequency analysis of paired mass distances within retention time groups. Structure directed analysis could be used to find potential relationship among those independent peaks in different retention time groups based on frequency of paired mass distances. Reactomics analysis could also be performed to build PMD network, assign sources and make biomarker reaction discovery. GUIs for PMD analysis is also included as ‘shiny’ applications.

Installation

You can install package from this GitHub repository:

devtools::install_github("yufree/pmd")

Or find a stable version from CRAN:

install.packages('pmd')

Usage

To perform GlobalStd algorithem, use the following code:

library(pmd)
data("spmeinvivo")
pmd <- getpaired(spmeinvivo)
std <- getstd(pmd)

To perform structure/reaction directed analysis, use the following code:

sda <- getsda(std)

To perform GlobalStd algorithem along with structure/reaction directed analysis, use the following code:

result <- globalstd(spmeinvivo)

To use the shiny application within the package, use the following code:

runPMD()

To check the pmd reaction database:

# all reaction
data("omics")
View(omics)
# kegg reaction
data("keggrall")
View(keggrall)
# literature reaction for mass spectrometry
data("sda")
View(sda)

To check the HMDB pmd database:

data("hmdb")
View(hmdb)

To cite related papers:

citation('pmd')