MSstatsQC is an open-source R package and Shiny application designed to streamline quality control (QC) and system suitability testing (SST) for targeted proteomic experiments.
By bridging the gap between traditional statistical process control (SPC) and modern Machine Learning (ML), MSstatsQC offers a comprehensive framework for real-time monitoring of mass spectrometric assays.
This package leverages h2o for its machine learning capabilities.
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("MSstatsQC")
BiocManager::install("eralpdogu/MSstatsQC")Here is a simple example to create a decision map:
library(MSstatsQC)
data <- MSstatsQC::S9Site54
data <- DataProcess(data)
DecisionMap(S9Site54,
method = "XmR", peptideThresholdRed = 0.25, peptideThresholdYellow = 0.10,
L = 1, U = 20, type = "mean", title = "Decision map", listMean = NULL, listSD = NULL
)