Foreword

MSnbase is under active development; current functionality is evolving and new features will be added. This software is free and open-source software. If you use it, please support the project by citing it in publications:

Gatto L, Lilley KS. MSnbase-an R/Bioconductor package for isobaric tagged mass spectrometry data visualization, processing and quantitation. Bioinformatics. 2012 Jan 15;28(2):288-9. doi: 10.1093/bioinformatics/btr645. PMID: 22113085.

Questions and bugs

For bugs, typos, suggestions or other questions, please file an issue in our tracking system (https://github.com/lgatto/MSnbase/issues) providing as much information as possible, a reproducible example and the output of sessionInfo().

If you don’t have a GitHub account or wish to reach a broader audience for general questions about proteomics analysis using R, you may want to use the Bioconductor support site: https://support.bioconductor.org/.

1 Overview

MSnbase’s aims are to facilitate the reproducible analysis of mass spectrometry data within the R environment, from raw data import and processing, feature quantification, quantification and statistical analysis of the results (Gatto and Lilley 2012). Data import functions for several formats are provided and intermediate or final results can also be saved or exported. These capabilities are presented below.

2 Data input

Raw data

Data stored in one of the published XML-based formats. i.e. mzXML (Pedrioli et al. 2004), mzData (Orchard et al. 2007) or mzML (Martens et al. 2010), can be imported with the readMSData method, which makes use of the mzR package to create MSnExp objects. The files can be in profile or centroided mode. See ?readMSData for details.

Peak lists

Peak lists in the mgf format1 can be imported using the readMgfData. In this case, the peak data has generally been pre-processed by other software. See ?readMgfData for details.

Quantitation data

Third party software can be used to generate quantitative data and exported as a spreadsheet (generally comma or tab separated format). This data as well as any additional meta-data can be imported with the readMSnSet function. See ?readMSnSet for details.

MSnbase also supports the mzTab format2, a light-weight, tab-delimited file format for proteomics data developed within the Proteomics Standards Initiative (PSI). mzTab files can be read into R with readMzTabData to create and MSnSet instance.

MSnbase input capabilities. The white and red boxes represent R functions/methods and objects respectively. The blue boxes represent different disk storage formats.
MSnbase input capabilities. The white and red boxes represent R functions/methods and objects respectively. The blue boxes represent different disk storage formats.

3 Data output

RData files

R objects can most easily be stored on disk with the save function. It creates compressed binary images of the data representation that can later be read back from the file with the load function.

mzML/mzXML files

MSnExp and OnDiskMSnExp files can be written to MS data files in mzML or mzXML files with the writeMSData method. See ?writeMSData for details.

Peak lists

MSnExp instances as well as individual spectra can be written as mgf files with the writeMgfData method. Note that the meta-data in the original R object can not be included in the file. See ?writeMgfData for details.

Quantitation data

Quantitation data can be exported to spreadsheet files with the write.exprs method. Feature meta-data can be appended to the feature intensity values. See ?writeMgfData for details.

Deprecated MSnSet instances can also be exported to mzTab files using the writeMzTabData function.

MSnbase output capabilities. The white and red boxes represent R functions/methods and objects respectively. The blue boxes represent different disk storage formats.
MSnbase output capabilities. The white and red boxes represent R functions/methods and objects respectively. The blue boxes represent different disk storage formats.

4 Creating MSnSet from text spread sheets

This section describes the generation of MSnSet objects using data available in a text-based spreadsheet. This entry point into R and MSnbase allows to import data processed by any of the third party mass-spectrometry processing software available and proceed with data exploration, normalisation and statistical analysis using functions available in and the numerous Bioconductor packages.

4.1 A complete work flow

The following section describes a work flow that uses three input files to create the MSnSet. These files respectively describe the quantitative expression data, the sample meta-data and the feature meta-data. It is taken from the pRoloc tutorial and uses example files from the pRolocdat package.

We start by describing the csv to be used as input using the read.csv function.

## The original data for replicate 1, available
## from the pRolocdata package
f0 <- dir(system.file("extdata", package = "pRolocdata"), 
          full.names = TRUE, 
          pattern = "pr800866n_si_004-rep1.csv")
csv <- read.csv(f0)

The three first lines of the original spreadsheet, containing the data for replicate one, are illustrated below (using the function head). It contains 888 rows (proteins) and 16 columns, including protein identifiers, database accession numbers, gene symbols, reporter ion quantitation values, information related to protein identification, …

head(csv, n=3)
##   Protein.ID        FBgn Flybase.Symbol No..peptide.IDs Mascot.score
## 1    CG10060 FBgn0001104    G-ialpha65A               3       179.86
## 2    CG10067 FBgn0000044         Act57B               5       222.40
## 3    CG10077 FBgn0035720        CG10077               5       219.65
##   No..peptides.quantified area.114 area.115 area.116 area.117
## 1                       1 0.379000 0.281000 0.225000 0.114000
## 2                       9 0.420000 0.209667 0.206111 0.163889
## 3                       3 0.187333 0.167333 0.169667 0.476000
##   PLS.DA.classification Peptide.sequence Precursor.ion.mass
## 1                    PM                                    
## 2                    PM                                    
## 3                                                          
##   Precursor.ion.charge pd.2013 pd.markers
## 1                           PM    unknown
## 2                           PM    unknown
## 3                      unknown    unknown

Below read in turn the spread sheets that contain the quantitation data (exprsFile.csv), feature meta-data (fdataFile.csv) and sample meta-data (pdataFile.csv).

## The quantitation data, from the original data
f1 <- dir(system.file("extdata", package = "pRolocdata"), 
          full.names = TRUE, pattern = "exprsFile.csv")
exprsCsv <- read.csv(f1)
## Feature meta-data, from the original data
f2 <- dir(system.file("extdata", package = "pRolocdata"), 
          full.names = TRUE, pattern = "fdataFile.csv")
fdataCsv <- read.csv(f2)
## Sample meta-data, a new file
f3 <- dir(system.file("extdata", package = "pRolocdata"), 
          full.names = TRUE, pattern = "pdataFile.csv")
pdataCsv <- read.csv(f3)

exprsFile.csv contains the quantitation (expression) data for the 888 proteins and 4 reporter tags.

head(exprsCsv, n = 3)
##          FBgn     X114     X115     X116     X117
## 1 FBgn0001104 0.379000 0.281000 0.225000 0.114000
## 2 FBgn0000044 0.420000 0.209667 0.206111 0.163889
## 3 FBgn0035720 0.187333 0.167333 0.169667 0.476000

fdataFile.csv contains meta-data for the 888 features (here proteins).

head(fdataCsv, n = 3)
##          FBgn ProteinID FlybaseSymbol NoPeptideIDs MascotScore
## 1 FBgn0001104   CG10060   G-ialpha65A            3      179.86
## 2 FBgn0000044   CG10067        Act57B            5      222.40
## 3 FBgn0035720   CG10077       CG10077            5      219.65
##   NoPeptidesQuantified PLSDA
## 1                    1    PM
## 2                    9    PM
## 3                    3

pdataFile.csv contains samples (here fractions) meta-data. This simple file has been created manually.

pdataCsv
##   sampleNames Fractions
## 1        X114       4/5
## 2        X115     12/13
## 3        X116        19
## 4        X117        21

The self-contained MSnSet can now easily be generated using the readMSnSet constructor, providing the respective csv file names shown above and specifying that the data is comma-separated (with sep = ","). Below, we call that object res and display its content.

library("MSnbase")
res <- readMSnSet(exprsFile = f1,
                  featureDataFile = f2,
                  phenoDataFile = f3,
                  sep = ",")
res
## MSnSet (storageMode: lockedEnvironment)
## assayData: 888 features, 4 samples 
##   element names: exprs 
## protocolData: none
## phenoData
##   sampleNames: X114 X115 X116 X117
##   varLabels: Fractions
##   varMetadata: labelDescription
## featureData
##   featureNames: FBgn0001104 FBgn0000044 ... FBgn0001215 (888 total)
##   fvarLabels: ProteinID FlybaseSymbol ... PLSDA (6 total)
##   fvarMetadata: labelDescription
## experimentData: use 'experimentData(object)'
## Annotation:  
## - - - Processing information - - -
## Quantitation data loaded: Tue Jan 23 18:49:38 2018  using readMSnSet. 
##  MSnbase version: 2.4.2

4.1.1 The MSnSet class

Although there are additional specific sub-containers for additional meta-data (for instance to make the object MIAPE compliant), the feature (the sub-container, or slot featureData) and sample (the phenoData slot) are the most important ones. They need to meet the following validity requirements (see figure below):

  • the number of row in the expression/quantitation data and feature data must be equal and the row names must match exactly, and

  • the number of columns in the expression/quantitation data and number of row in the sample meta-data must be equal and the column/row names must match exactly.

A detailed description of the MSnSet class is available by typing ?MSnSet in the R console.

Dimension requirements for the respective expression, feature and sample meta-data slots.
Dimension requirements for the respective expression, feature and sample meta-data slots.

The individual parts of this data object can be accessed with their respective accessor methods:

  • the quantitation data can be retrieved with exprs(res),
  • the feature meta-data with fData(res) and
  • the sample meta-data with pData(res).

4.2 A shorter work flow

The readMSnSet2 function provides a simplified import workforce. It takes a single spreadsheet as input (default is csv) and extract the columns identified by ecol to create the expression data, while the others are used as feature meta-data. ecol can be a character with the respective column labels or a numeric with their indices. In the former case, it is important to make sure that the names match exactly. Special characters like '-' or '(' will be transformed by R into '.' when the csv file is read in. Optionally, one can also specify a column to be used as feature names. Note that these must be unique to guarantee the final object validity.

ecol <- paste("area", 114:117, sep = ".")
fname <- "Protein.ID"
eset <- readMSnSet2(f0, ecol, fname)
eset
## MSnSet (storageMode: lockedEnvironment)
## assayData: 888 features, 4 samples 
##   element names: exprs 
## protocolData: none
## phenoData: none
## featureData
##   featureNames: CG10060 CG10067 ... CG9983 (888 total)
##   fvarLabels: Protein.ID FBgn ... pd.markers (12 total)
##   fvarMetadata: labelDescription
## experimentData: use 'experimentData(object)'
## Annotation:  
## - - - Processing information - - -
##  MSnbase version: 2.4.2

The ecol columns can also be queried interactively from R using the getEcols and grepEcols function. The former return a character with all column names, given a splitting character, i.e. the separation value of the spreadsheet (typically "," for csv, "\t" for tsv, …). The latter can be used to grep a pattern of interest to obtain the relevant column indices.

getEcols(f0, ",")
##  [1] "\"Protein ID\""              "\"FBgn\""                   
##  [3] "\"Flybase Symbol\""          "\"No. peptide IDs\""        
##  [5] "\"Mascot score\""            "\"No. peptides quantified\""
##  [7] "\"area 114\""                "\"area 115\""               
##  [9] "\"area 116\""                "\"area 117\""               
## [11] "\"PLS-DA classification\""   "\"Peptide sequence\""       
## [13] "\"Precursor ion mass\""      "\"Precursor ion charge\""   
## [15] "\"pd.2013\""                 "\"pd.markers\""
grepEcols(f0, "area", ",")
## [1]  7  8  9 10
e <- grepEcols(f0, "area", ",")
readMSnSet2(f0, e)
## MSnSet (storageMode: lockedEnvironment)
## assayData: 888 features, 4 samples 
##   element names: exprs 
## protocolData: none
## phenoData: none
## featureData
##   featureNames: 1 2 ... 888 (888 total)
##   fvarLabels: Protein.ID FBgn ... pd.markers (12 total)
##   fvarMetadata: labelDescription
## experimentData: use 'experimentData(object)'
## Annotation:  
## - - - Processing information - - -
##  MSnbase version: 2.4.2

The phenoData slot can now be updated accordingly using the replacement functions phenoData<- or pData<- (see ?MSnSet for details).

5 Session information

sessionInfo()
## R version 3.4.3 (2017-11-30)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 16.04.3 LTS
## 
## Matrix products: default
## BLAS: /home/biocbuild/bbs-3.6-bioc/R/lib/libRblas.so
## LAPACK: /home/biocbuild/bbs-3.6-bioc/R/lib/libRlapack.so
## 
## locale:
##  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
##  [3] LC_TIME=en_US.UTF-8        LC_COLLATE=C              
##  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
##  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
##  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
## [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
## 
## attached base packages:
##  [1] grid      stats4    parallel  stats     graphics  grDevices utils    
##  [8] datasets  methods   base     
## 
## other attached packages:
##  [1] gplots_3.0.1         msdata_0.18.0        pRoloc_1.18.0       
##  [4] MLInterfaces_1.58.0  cluster_2.0.6        annotate_1.56.1     
##  [7] XML_3.98-1.9         AnnotationDbi_1.40.0 IRanges_2.12.0      
## [10] S4Vectors_0.16.0     pRolocdata_1.16.0    Rdisop_1.38.0       
## [13] RcppClassic_0.9.9    zoo_1.8-1            MSnbase_2.4.2       
## [16] ProtGenerics_1.10.0  BiocParallel_1.12.0  mzR_2.12.0          
## [19] Rcpp_0.12.15         Biobase_2.38.0       BiocGenerics_0.24.0 
## [22] ggplot2_2.2.1        BiocStyle_2.6.1     
## 
## loaded via a namespace (and not attached):
##   [1] backports_1.1.2       plyr_1.8.4            igraph_1.1.2         
##   [4] lazyeval_0.2.1        splines_3.4.3         ggvis_0.4.3          
##   [7] crosstalk_1.0.0       digest_0.6.14         foreach_1.4.4        
##  [10] BiocInstaller_1.28.0  htmltools_0.3.6       viridis_0.4.1        
##  [13] gdata_2.18.0          magrittr_1.5          memoise_1.1.0        
##  [16] doParallel_1.0.11     sfsmisc_1.1-1         limma_3.34.6         
##  [19] recipes_0.1.2         gower_0.1.2           rda_1.0.2-2          
##  [22] dimRed_0.1.0          lpSolve_5.6.13        prettyunits_1.0.2    
##  [25] colorspace_1.3-2      blob_1.1.0            dplyr_0.7.4          
##  [28] RCurl_1.95-4.10       hexbin_1.27.2         genefilter_1.60.0    
##  [31] bindr_0.1             impute_1.52.0         DRR_0.0.3            
##  [34] survival_2.41-3       iterators_1.0.9       glue_1.2.0           
##  [37] gtable_0.2.0          ipred_0.9-6           zlibbioc_1.24.0      
##  [40] ddalpha_1.3.1         kernlab_0.9-25        prabclus_2.2-6       
##  [43] DEoptimR_1.0-8        scales_0.5.0          vsn_3.46.0           
##  [46] mvtnorm_1.0-6         DBI_0.7               viridisLite_0.2.0    
##  [49] xtable_1.8-2          progress_1.1.2        foreign_0.8-69       
##  [52] bit_1.1-12            proxy_0.4-21          mclust_5.4           
##  [55] preprocessCore_1.40.0 lava_1.6              prodlim_1.6.1        
##  [58] sampling_2.8          htmlwidgets_1.0       httr_1.3.1           
##  [61] threejs_0.3.1         FNN_1.1               RColorBrewer_1.1-2   
##  [64] fpc_2.1-11            modeltools_0.2-21     pkgconfig_2.0.1      
##  [67] flexmix_2.3-14        nnet_7.3-12           caret_6.0-78         
##  [70] labeling_0.3          tidyselect_0.2.3      rlang_0.1.6          
##  [73] reshape2_1.4.3        munsell_0.4.3         mlbench_2.1-1        
##  [76] tools_3.4.3           RSQLite_2.0           pls_2.6-0            
##  [79] broom_0.4.3           evaluate_0.10.1       stringr_1.2.0        
##  [82] mzID_1.16.0           yaml_2.1.16           ModelMetrics_1.1.0   
##  [85] knitr_1.18            bit64_0.9-7           robustbase_0.92-8    
##  [88] caTools_1.17.1        randomForest_4.6-12   purrr_0.2.4          
##  [91] dendextend_1.6.0      bindrcpp_0.2          nlme_3.1-131         
##  [94] whisker_0.3-2         mime_0.5              RcppRoll_0.2.2       
##  [97] biomaRt_2.34.2        compiler_3.4.3        e1071_1.6-8          
## [100] affyio_1.48.0         tibble_1.4.2          stringi_1.1.6        
## [103] highr_0.6             lattice_0.20-35       trimcluster_0.1-2    
## [106] Matrix_1.2-12         psych_1.7.8           gbm_2.1.3            
## [109] pillar_1.1.0          MALDIquant_1.17       bitops_1.0-6         
## [112] httpuv_1.3.5          R6_2.2.2              pcaMethods_1.70.0    
## [115] affy_1.56.0           hwriter_1.3.2         bookdown_0.5         
## [118] KernSmooth_2.23-15    gridExtra_2.3         codetools_0.2-15     
## [121] MASS_7.3-48           gtools_3.5.0          assertthat_0.2.0     
## [124] CVST_0.2-1            rprojroot_1.3-2       withr_2.1.1          
## [127] mnormt_1.5-5          diptest_0.75-7        rpart_4.1-12         
## [130] timeDate_3042.101     tidyr_0.7.2           class_7.3-14         
## [133] rmarkdown_1.8         Rtsne_0.13            lubridate_1.7.1      
## [136] shiny_1.0.5           base64enc_0.1-3

References

Gatto, Laurent, and Kathryn S Lilley. 2012. “MSnbase – an R/Bioconductor Package for Isobaric Tagged Mass Spectrometry Data Visualization, Processing and Quantitation.” Bioinformatics 28 (2):288–9. https://doi.org/10.1093/bioinformatics/btr645.

Martens, Lennart, Matthew Chambers, Marc Sturm, Darren Kes sner, Fredrik Levander, Jim Shofstahl, Wilfred H Tang, et al. 2010. “MzML - a Community Standard for Mass Spectrometry Data.” Molecular & Cellular Proteomics : MCP. https://doi.org/10.1074/mcp.R110.000133.

Orchard, Sandra, Luisa Montechi-Palazzi, Eric W Deutsch, Pierre-Alain Binz, Andrew R Jones, Norman Paton, Angel Pizarro, David M Creasy, Jérôme Wojcik, and Henning Hermjakob. 2007. “Five Years of Progress in the Standardization of Proteomics Data 4th Annual Spring Workshop of the Hupo-Proteomics Standards Initiative April 23-25, 2007 Ecole Nationale Supérieure (Ens), Lyon, France.” Proteomics 7 (19):3436–40. https://doi.org/10.1002/pmic.200700658.

Pedrioli, Patrick G A, Jimmy K Eng, Robert Hubley, Mathijs Vogelzang, Eric W Deutsch, Brian Raught, Brian Pratt, et al. 2004. “A Common Open Representation of Mass Spectrometry Data and Its Application to Proteomics Research.” Nat. Biotechnol. 22 (11):1459–66. https://doi.org/10.1038/nbt1031.


  1. http://www.matrixscience.com/help/data_file_help.html

  2. https://github.com/HUPO-PSI/mzTab