Analytical R Tools for Mass Spectrometry
artMS
(http://artms.org/) is an R package that provides a set of tools for the analysis and integration of large-scale proteomics (mass-spectrometry-based) datasets obtained using the popular proteomics software package
MaxQuant. The functions available in artMS can be grouped into 4 major categories:
artMS
performs the different analyses taking as input the following files:
evidence.txt
file: The output of the quantitative proteomics software
package MaxQuant
. keys.txt
(tab-delimited) txt file generated by the user describing the experimental designed (check below to learn how to create it).contrast.txt
(tab-delimited) txt file generated by the user with the comparisons between conditions to be quantified (check below to learn how to create it).config.yaml
: a configuration file which enables the customization of a number of parameters for the quantification (and other operations, including QC analyses, charts and annotations). A configuration file template can be generated by running artmsWriteConfigYamlFile()
artMS version >= 1.10.1
had many changes to adjust for changes in MSstats. This version requires:
R version >= 4.1.0
(check the R version running on your system by executing the function getRversion()
)BiocManager::install("BiocVersion")
BiocManager::install("artMS")
artmsAnalysisQuantifications()
to perform a comprehensive downstream analysis of the quantitative results, then install the following packages:# From bioconductor:
BiocManager::install(c("ComplexHeatmap", "org.Mm.eg.db"))
# From CRAN:
install.packages(c("factoextra", "FactoMineR", "gProfileR", "PerformanceAnalytics"))
Extra: Why Bioconductor? Here you can find a nice summary of many good reasons).
Assuming that you have an R (>= 4.1)
version running on your system,
follow these steps:
install.packages("devtools")
library(devtools)
install_github("biodavidjm/artMS")
Once installed, the package can be loaded and attached to your current workspace as follows:
```{r, eval=TRUE} library(artMS)
Once installed, we suggest you to do a quick test by running the quality control functions using the "evidence" (`artms_data_ph_evidence`) and "keys" (`artms_data_ph_keys`) files included in `artMS` as test datasets.
artmsQualityControlEvidenceBasic(evidence_file = artms_data_ph_evidence, keys_file = artms_data_ph_keys, prot_exp = "PH") ```
(To learn more about these testing datasets, check the documentation by running ?artms_data_ph_keys
or ?artms_data_ph_evidence
on the R console)
Once the QC is done, go to the folder "/path/to/your/working/directory/"
and check out all the generated QC (pdf) files available in the qc_basic
folder
artMS
is an open source project, therefore you are more than welcome to contribute and make the analysis of Mass Spectrometry data easier and better using this fantastic language and environment for statistical computing and graphics (i.e. R
).
There are multiple options:
Tips: Do you need to remember the basics of markdown? Check out this fantastic link.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.