Analyzing Proteomics UPS1 Spike-in Experiments (Example Ramus 2016 Dataset)

Wolfgang Raffelsberger

2024-02-13

Introduction

This vignette complements the more basic vignette ‘Getting started with wrProteo’ also from this package and shows in more detail how UPS1 spike-in experiments may be analyzed, using this package (wrProteo), wrMisc, wrGraph and RColorBrewer. All these packages are available on CRAN.

Furthermore, the Bioconductor package limma will be used internally for it’s moderated statistical testing.

## This is R code, you can run this to redo all analysis presented here.
## If not already installed, you'll have to install wrMisc and wrProteo first.
install.packages("wrMisc")
install.packages("wrProteo")
## These packages are used for the graphics
install.packages("wrGraph")
install.packages("RColorBrewer")

## Installation of limma from Bioconductor
if(!requireNamespace("BiocManager", quietly=TRUE)) install.packages("BiocManager")
BiocManager::install("limma")

## You cat also see all vignettes for this package by typing :
browseVignettes("wrProteo")    #  ... and the select the html output

As you will see in the interactive window from browseVignettes(), this package has 2 vignettes, a more general introductory vignette (mentioned above) and this UPS-1 dedicated vignette.

Now let’s load the packages needed :

## Let's assume this is a fresh R-session
library(knitr)
library(wrMisc)
library(wrGraph)
library(wrProteo)

# Version number for wrProteo :
packageVersion("wrProteo")
#> [1] '1.11.0.1'

Experimental Setup For Benchmark Tests

The main aim of the experimental setup using heterologous spike-in experiments is to provide a framework to test identification and quantitation procedures in proteomics.

By mixing known amounts of a collection of human proteins (UPS1) in various concentrations on top of a constant level yeast total protein extract, one expects to find only the spiked human UPS1 proteins varying between samples. In terms of ROC curves (see also ROC on Wikipedia) the spike-in proteins are expected to show up as true positives (TP). In contrast, all yeast proteins were added in the same quantity to same samples and should thus be observed as constant, ie as true negatives (TN) when looking for proteins changing abundance.

The specific dataset used here (seen also next section) is not that recent, thus, for addressing scientific questions concerning comparison and choice of quantification software it may be better to use similar buut more recent datasets The main aim of this vignette is to show the possibilities how such comparisons can be performed using wrProteo.

The Ramus Data-Set

The data used in this vignette was published with the article : Ramus et al 2016 “Benchmarking quantitative label-free LC-MS data processing workflows using a complex spiked proteomic standard dataset” in J Proteomics 2016 Jan 30;132:51-62.

This dataset is available on PRIDE as PXD001819 (and on ProteomeXchange).

Briefly, this experiment aims to evaluate and compare various quantification appoaches of the heterologous spike-in UPS1 (available from Sigma-Aldrich) in yeast protein extracts as constant matrix. 9 different concentrations of the heterologous spike-in (UPS1) were run in triplicates. The proteins were initially digested by Trypsin and then analyzed by LC-MS/MS in DDA mode.

As described in more detail in the reference, this dataset was generated using a LTQ-Orbitrap, in the meantime more powerful and precises mass-spectrometers have become avialable. Thus, scientific questions about the comparison and choice of quantification software may be better addressed using more recent datasets.

Meta-Data Describing The Experiment (sdrf)

The project Proteomics Sample Metadata Format aims to provide a framework of providing a uniform format for documenting experimental meta-data (sdrf-format). The meta-data for experiments already integrated can be directly read/accessed from wrProteo.

Either you download the meta-data as file ‘sdrf.tsv’ from Pride/PXD001819, or you may read file ‘PXD001819.sdrf.tsv’ directly from github/bigbio.

## Read meta-data from  github.com/bigbio/proteomics-metadata-standard/
pxd001819meta <- readSdrf("PXD001819")
#> readSdrf : Successfully read 24 annotation columns for 27 samples

## The concentration of the UPS1 spike-in proteins in the samples
if(length(pxd001819meta) >0) {
  UPSconc <- sort(unique(as.numeric(wrMisc::trimRedundText(pxd001819meta$characteristics.spiked.compound.))))  # trim to get to 'essential' info
} else {
  UPSconc <- c(50, 125, 250, 500, 2500, 5000, 12500, 25000, 50000)       # in case access to github failed
}

The import function used furtheron in this vignette can directly download this metadata if the PXD-accession-number is provided.

Key Elements And Additional Functions

## A few elements and functions we'll need lateron
methNa <- c("ProteomeDiscoverer","MaxQuant","Proline")
names(methNa) <- c("PD","MQ","PL")

## The accession numbers for the UPS1 proteins
UPS1 <- data.frame(ac=c("P00915", "P00918", "P01031", "P69905", "P68871", "P41159", "P02768", "P62988",
  "P04040", "P00167", "P01133", "P02144", "P15559", "P62937", "Q06830", "P63165",
  "P00709", "P06732", "P12081", "P61626", "Q15843", "P02753", "P16083", "P63279",
  "P01008", "P61769", "P55957", "O76070", "P08263", "P01344", "P01127", "P10599",
  "P99999", "P06396", "P09211", "P01112", "P01579", "P02787", "O00762", "P51965",
  "P08758", "P02741", "P05413", "P10145", "P02788", "P10636-8", "P00441", "P01375"),
  species=rep("Homo sapiens", 48),
  name=NA)
## additional functions
replSpecType <- function(x, annCol="SpecType", replBy=cbind(old=c("mainSpe","species2"), new=c("Yeast","UPS1")), silent=TRUE) {
  ## rename $annot[,"SpecType"] to more specific names
  chCol <- annCol[1] %in% colnames(x$annot)
  if(chCol) { chCol <- which(colnames(x$annot)==annCol[1])
    chIt <- replBy[,1] %in% unique(x$annot[,chCol])    # check items to replace if present
    if(any(chIt)) for(i in which(chIt)) {useLi <- which(x$annot[,chCol] %in% replBy[i,1]); cat("useLi",head(useLi),"\n"); x$annot[useLi,chCol] <- replBy[i,2]}
  } else if(!silent) message(" replSpecType: 'annCol' not found in x$annot !")
  x }

plotConcHist <- function(mat, ref, refColumn=3:4, matCluNa="cluNo", lev=NULL, ylab=NULL, tit=NULL) {
  ## plot histogram like counts of UPS1 concentrations
  if(is.null(tit)) tit <- "Frequency of UPS1 Concentrations Appearing in Cluster"
  gr <- unique(mat[,matCluNa])
  ref <- ref[,refColumn]
  if(length(lev) <2) lev <- sort(unique(as.numeric(as.matrix(ref))))
  if(length(ylab) !=1) ylab <- "Frequency"
  tbl <- table(factor( as.numeric(ref[which(rownames(ref) %in% rownames(mat)),]), levels=lev))
  graphics::barplot(tbl, las=1, beside=TRUE, main=paste(tit,gr), col=grDevices::gray(0.8), ylab=ylab)
}

plotMultRegrPar <- function(dat, methInd, tit=NULL, useColumn=c("logp","slope","medAbund","startFr"), lineGuide=list(v=c(-12,-10),h=c(0.7,0.75),col="grey"), xlim=NULL,ylim=NULL,subTit=NULL) {
  ## scatter plot logp (x) vs slope (y) for all UPS proteins, symbol by useColumn[4], color by hist of useColumn[3]
  ## dat (array) UPS1 data
  ## useColumn (character) 1st as 'logp', 2nd as 'slope', 3rd as median abundance, 4th as starting best regression from this point
  fxNa <- "plotMultRegrPar"
   #fxNa <- wrMisc::.composeCallName(callFrom,newNa="plotMultRegrPar")
  if(length(dim(dat)) !=3) stop("invalid input, expecting as 'dat' array with 3 dimensions (proteins,Softw,regrPar)")
  if(any(length(methInd) >1, methInd > dim(dat)[2], !is.numeric(methInd))) stop("invalid 'methInd'")
  chCol <- useColumn %in% dimnames(dat)[[3]]
  if(any(!chCol)) stop("argument 'useColumn' does not fit to 3rd dim dimnames of 'dat'")
  useCol <- colorAccording2(dat[,methInd,useColumn[3]], gradTy="rainbow", revCol=TRUE, nEndOmit=14)
  graphics::plot(dat[,methInd,useColumn[1:2]], main=tit, type="n",xlim=xlim,ylim=ylim)   #col=1, bg.col=useCol, pch=20+lmPDsum[,"startFr"],
  graphics::points(dat[,methInd,useColumn[1:2]], col=1, bg=useCol, pch=20+dat[,methInd,useColumn[4]],)
  graphics::legend("topright",paste("best starting from ",1:5), text.col=1, pch=21:25, col=1, pt.bg="white", cex=0.9, xjust=0.5, yjust=0.5)
  if(length(subTit)==1) graphics::mtext(subTit,cex=0.9)
  if(is.list(lineGuide) & length(lineGuide) >0) {if(length(lineGuide$v) >0) graphics::abline(v=lineGuide$v,lty=2,col=lineGuide$col)
    if(length(lineGuide$h) >0) graphics::abline(h=lineGuide$h,lty=2,col=lineGuide$col)}
  hi1 <- graphics::hist(dat[,methInd,useColumn[3]], plot=FALSE)
  wrGraph::legendHist(sort(dat[,methInd,useColumn[3]]), colRamp=useCol[order(dat[,methInd,useColumn[3]])][cumsum(hi1$counts)],
    cex=0.5, location="bottomleft", legTit="median raw abundance")  #
}

Protein Identification and Initial Quantification

Multiple algorithms and software implementations have been developed for quantitation label-free proteomics experiments, in particular for extracted ion chromatograms (XIC). For background information you may look at Wikipedia labell-free Proteomics. Here, the use of the output for 3 such implementations for extracting peptide/protein quantifications is shown. These 3 software implementations were run individually using equivalent settings, ie identifcation based on the same fasta-database, starting at a single peptide with 1% FDR, MS mass tolerance for ion precursors at 0.7 ppm, oxidation of methionins and N-terminal acetylation as fixed as well as carbamidomethylation of cysteins as variable modifications.

Since in this context it is crucial to recognize all UPS1 proteins as such, the import-functions make use of the specPref argument, allowing to define custom tags. Most additional arguments to the various import-functions have been kept common for conventient use and for generating output structured the same way. Indeed, simply separating proteins by their species origin is not sufficient since common contaminants like human keratin might get considered by error as UPS1.

MaxQuant

MaxQuant is free software provided by the Max-Planck-Institute, see also Tyanova et al 2016. Later in this document data from MaxQuant will by frequently abbreviated as MQ.

Typically MaxQuant exports quantitation data on level of consensus-proteins by default to a folder called txt with a file called “proteinGroups.txt” . So in a standard case (when the file name has not been changed manually) it is sufficient to provide the path to this file. Of course, you can explicitely point to a specific file, as shown below. With the data presented here MaxQuant version 1.6.10 was run. Files compressed as .gz can be read, too (like in the example below).

path1 <- system.file("extdata", package="wrProteo")
fiNaMQ <- "proteinGroups.txt.gz"

## We need to define the setup of species
specPrefMQ <- list(conta="CON_|LYSC_CHICK", mainSpecies="OS=Saccharomyces cerevisiae", spike=UPS1$ac)
dataMQ <- readMaxQuantFile(path1, file=fiNaMQ, specPref=specPrefMQ, refLi="mainSpe",
  sdrf=c("PXD001819","max"), suplAnnotFile=TRUE, plotGraph=FALSE)
#> readMaxQuantFile : Note: Found 11 out of 1115 proteins marked as 'REV_' (reverse peptide identification) - Removing
#> readMaxQuantFile : Transform 2845(9.5%) initial '0' values to 'NA'
#> readMaxQuantFile : Could not find peptide counts columns (argument 'pepCountCol') matching to 'Unique peptides MS\.MS\.count '
#> readMaxQuantFile : Found 1 species name(s) appearing inside other ones, assume as truncated (eg  Saccharomyces cerevis)
#> readMaxQuantFile : Note: 5 proteins with unknown species
#>      data by species : Gallus gallus: 1,  Homo sapiens: 49,  Mus musculus: 1,  Saccharomyces cerevisiae: 1047,  Sus scrofa: 1,
#> readMaxQuantFile : Found 70 composite accession-numbers (eg P00761;P00761), truncating
#> readMaxQuantFile : Use column 'Accession' as identifyer (has fewest, ie 0 duplicated entries) as rownames
#> readMaxQuantFile : Could not find any proteins matching argument 'refLi=mainSpe', ignoring ...
#> readMaxQuantFile : normalizeThis :  omit redundant 'refLines'
#> readMaxQuantFile : readSampleMetaData : PROBLEM : Meta-data and abundance data do not match !  Number of samples from summary.txt.gz (27) and from main data (27) do NOT match !! .. ignoring
#> readMaxQuantFile : readSampleMetaData : readSdrf : Successfully read 24 annotation columns for 27 samples
#> readMaxQuantFile : readSampleMetaData : Note : Some filenames contain '.raw', others do NOT; solved inconsistency ..
#> readMaxQuantFile : readSampleMetaData : Successfully adjusted order of sdrf to content of summary.txt.gzparameters.txt.gz

The data were imported, log2-transformed and median-normalized, the protein annotation was parsed to automatically extract IDs, protein-names and species information. The species anotation was extracted out of the fasta-headers, as given in the specPref argument (MaxQuant specific setting). As explained in more detail in the general vignette wrProteoVignette1, In this example we use only proteins annotated as Homo sapiens for determining the normalization-factors via the argument refLi.

If you wish to inspect the graphs for the distribution of abundance values for each sample before and after median-normalization, please set the argument plotGraph=TRUE (default). Please note, that in the example above we directly added information about the experimental setup from the sdrf repository.

## The number of lines and colums
dim(dataMQ$quant)
#> [1] 1104   27
## A quick summary of some columns of quantitation data
summary(dataMQ$quant[,1:7])                # the first 8 cols
#>   12500amol_1     12500amol_2     12500amol_3      125amol_1    
#>  Min.   :17.52   Min.   :15.65   Min.   :14.91   Min.   :15.20  
#>  1st Qu.:22.49   1st Qu.:22.47   1st Qu.:22.48   1st Qu.:22.40  
#>  Median :23.45   Median :23.45   Median :23.45   Median :23.45  
#>  Mean   :23.67   Mean   :23.64   Mean   :23.65   Mean   :23.62  
#>  3rd Qu.:24.80   3rd Qu.:24.74   3rd Qu.:24.75   3rd Qu.:24.84  
#>  Max.   :30.27   Max.   :30.25   Max.   :30.30   Max.   :30.27  
#>  NA's   :98      NA's   :100     NA's   :104     NA's   :114    
#>    125amol_2       125amol_3      25000amol_1   
#>  Min.   :14.88   Min.   :14.94   Min.   :15.74  
#>  1st Qu.:22.39   1st Qu.:22.41   1st Qu.:22.44  
#>  Median :23.45   Median :23.45   Median :23.45  
#>  Mean   :23.62   Mean   :23.63   Mean   :23.65  
#>  3rd Qu.:24.84   3rd Qu.:24.80   3rd Qu.:24.86  
#>  Max.   :30.28   Max.   :30.30   Max.   :30.19  
#>  NA's   :106     NA's   :114     NA's   :109
table(dataMQ$annot[,"SpecType"], useNA="always")
#> 
#>       conta mainSpecies       spike        <NA> 
#>           9        1047          48           0

Now we can summarize the presence of UPS1 proteins after treatment by MaxQuant : In sum, 48 UPS1 proteins were found, 0 are missing.

ProteomeDiscoverer

ProteomeDiscoverer is commercial software from ThermoFisher (www.thermofisher.com). Later in this document data from ProteomeDiscoverer will by frequently abbreviated as PD.

With the data used here, the identification was performed using the XCalibur module of ProteomeDiscoverer version 2.4 . Quantitation data at the level of consensus-proteins can be exported to tabulated text files, which can be treated by the function shown below. The resultant data were export in tablulated format and the file automatically named ‘_Proteins.txt_’ by ProteomeDiscoverer (the option R-headers was checked, however this option is not mandatory). Files compressed as .gz can be read, too (like in the example below).

path1 <- system.file("extdata", package="wrProteo")
fiNaPd <- "pxd001819_PD24_Proteins.txt.gz"
## Next, we define the setup of species
specPrefPD <- list(conta="Bos tauris|Gallus", mainSpecies="Saccharomyces cerevisiae", spike=UPS1$ac)
dataPD <- readProteomeDiscovererFile(file=fiNaPd, path=path1, refLi="mainSpe", specPref=specPrefPD,
  sdrf=c("PXD001819","max"), plotGraph=FALSE)
#> readProteomeDiscovererFile : Adding supl annotation-columns 'Number.of.AAs', 'NA', 'NA', 'NA', 'NA' and 'NA'
#> readProteomeDiscovererFile : Note : 1 proteins/peptide(s) were marked (in addition) as contaminants based on 'specPref'
#> readProteomeDiscovererFile : Note : 1 contaminant protein(s)/peptide(s) will be removed, 1296 remain
#> readProteomeDiscovererFile : Count by 'Species' : Homo sapiens: 44 ;  Saccharomyces cerevisiae (strain ATCC 204508 / S288c): 1239 ;  na: 13
#> readProteomeDiscovererFile : Removing 1 lines due to duplicated Accessions (typically due to contaminants)
#> readProteomeDiscovererFile : Normalize using (custom) subset of 1239 lines specified as 'mainSpe'
#> readProteomeDiscovererFile : readSampleMetaData : readSdrf : Successfully read 24 annotation columns for 27 samples
#> readProteomeDiscovererFile : readSampleMetaData : Successfully adjusted order of sdrf to content of pxd001819_PD_InputFiles.txt.gz

The data were imported, log2-transformed and median-normalized, the protein annotation was parsed to automatically extract IDs, protein-names and species information. Please note, that quantitation data exported from ProteomeDiscoverer frequently have very generic column-names (increasing numbers). When calling the import-function they can be replaced by more meaningful names either using the argument sampNa, or from reading the default annotation in the file ‘InputFiles.txt’ or, finally, from the sdrf-annotation. In the example below both the default annotation as file ‘InputFiles.txt’ and sdrf annotation are available and were integrated to object produced by the import-function.

The species anotation was extracted out as given in the specPref argument. In this example we use only proteins annotated as Homo sapiens for determining the normalization-factors via the argument refLi.

If you wish to inspect the graphs for the distribution of abundance values for each sample before and after median-normalization, please set the argument plotGraph=TRUE (default).

## The number of lines and colums
dim(dataPD$quant)
#> [1] 1295   27
## A quick summary of some columns of quantitation data
summary(dataPD$quant[,1:7])        # the first 8 cols
#>  UPS1_50amol_R1  UPS1_50amol_R2  UPS1_50amol_R3   UPS1_125amol_R1
#>  Min.   :13.62   Min.   :11.56   Min.   : 9.585   Min.   :10.90  
#>  1st Qu.:18.15   1st Qu.:18.18   1st Qu.:18.234   1st Qu.:18.23  
#>  Median :19.37   Median :19.37   Median :19.380   Median :19.37  
#>  Mean   :19.53   Mean   :19.54   Mean   :19.543   Mean   :19.52  
#>  3rd Qu.:20.84   3rd Qu.:20.89   3rd Qu.:20.900   3rd Qu.:20.84  
#>  Max.   :26.39   Max.   :26.42   Max.   :26.435   Max.   :26.43  
#>  NA's   :92      NA's   :93      NA's   :87       NA's   :88     
#>  UPS1_125amol_R2 UPS1_125amol_R3 UPS1_250amol_R1
#>  Min.   :10.48   Min.   :11.16   Min.   :10.09  
#>  1st Qu.:18.20   1st Qu.:18.20   1st Qu.:18.17  
#>  Median :19.40   Median :19.40   Median :19.40  
#>  Mean   :19.52   Mean   :19.53   Mean   :19.50  
#>  3rd Qu.:20.82   3rd Qu.:20.83   3rd Qu.:20.77  
#>  Max.   :26.39   Max.   :26.46   Max.   :26.46  
#>  NA's   :99      NA's   :85      NA's   :87
table(dataPD$annot[,"SpecType"], useNA="always")
#> 
#> mainSpecies       spike        <NA> 
#>        1239          48           8

Confirming the presence of UPS1 proteins by ProteomeDiscoverer:

Now we can summarize the presence of UPS1 proteins after treatment by ProteomeDiscoverer : In sum, 48 UPS1 proteins were found, 0 are missing.

Proline

Proline is open-source software provided by the Profi-consortium (see also proline-core on github), published by Bouyssie et al 2020. Later in this document data from Proline will by frequently abbreviated as PL.

Protein identification in Proline gets performed by SearchGUI, see also Vaudel et al 2015. In this case X!Tandem (see also Duncan et al 2005) was used as search engine.

Quantitation data at the level of consensus-proteins can be exported from Proline as .xlsx or tabulated text files, both formats can be treated by the import-functions shown below. Here, Proline version 1.6.1 was used with addition of Percolator (via MS-Angel from the same authors).

path1 <- system.file("extdata", package="wrProteo")
fiNaPl <- "pxd001819_PL.xlsx"

specPrefPL <- list(conta="_conta", mainSpecies="Saccharomyces cerevisiae", spike=UPS1$ac)
dataPL <- readProlineFile(fiNaPl, path=path1, specPref=specPrefPL, normalizeMeth="median", refLi="mainSpe",
  sdrf=c("PXD001819","max"), plotGraph=FALSE)
#> readProlineFile : Found sheets 'Search settings and infos', 'Import and filters', 'Quant config' and 'Protein sets'
#> readProlineFile : Normalize using (custom) subset of 1137 lines specified as 'mainSpe'
#> readProlineFile : readSampleMetaData : replicateStructure : Need to correct redundant colnames !!!
#> readProlineFile : readSampleMetaData : readSdrf : Successfully read 24 annotation columns for 27 samples
#> readProlineFile : readSampleMetaData :  summaryD exists, but unable to find file-names

The (log2-transformed) data were imported and median-normalized, the protein annotation was parsed to automatically extract IDs, protein-names and species information. The species anotation was extracted out of protein annotation columns, as specified with the specPref argument. As explained in more detail in the general vignette wrProteoVignette1, In this example we use only proteins annotated as Homo sapiens for determining the normalization-factors via the argument refLi.

If you wish to inspect the graphs for the distribution of abundance values for each sample before and after median-normalization, please set the argument plotGraph=TRUE (default). Please note, that in the example above we directly added information about the experimental setup from the sdrf repository.

In addition, we need to correct the quantification column-heads (like ‘Levure2ug+ UPS1-100amol’) and bring them to a simpler version : Here, both the default annotation from the xlsx and sdrf annotation are available and were integrated to object produced by the import-function.

head(colnames(dataPL$raw), 7)
#> [1] "Levure2ug+ UPS1-100amol-1" "Levure2ug+ UPS1-100amol-2"
#> [3] "Levure2ug+ UPS1-100amol-3" "Levure2ug+ UPS1-250amol-1"
#> [5] "Levure2ug+ UPS1-250amol-2" "Levure2ug+ UPS1-250amol-3"
#> [7] "Levure2ug+ UPS1-500amol-1"
dataPL <- cleanListCoNames(dataPL, rem=c("Levure2ug+ UPS1-"), subst=cbind(c("fmol","mol-"), c("000amol","mol_R")), mathOper="/2")

## let's check the result
head(colnames(dataPL$raw),8)
#> [1] "50amol_R1"  "50amol_R2"  "50amol_R3"  "125amol_R1" "125amol_R2"
#> [6] "125amol_R3" "250amol_R1" "250amol_R2"
## The number of lines and colums
dim(dataPL$quant)
#> [1] 1186   27
## A quick summary of some columns of quantitation data
summary(dataPL$quant[,1:8])        # the first 8 cols
#>    50amol_R1       50amol_R2       50amol_R3       125amol_R1   
#>  Min.   :14.29   Min.   :14.52   Min.   :13.78   Min.   :14.43  
#>  1st Qu.:19.64   1st Qu.:19.66   1st Qu.:19.70   1st Qu.:19.76  
#>  Median :21.64   Median :21.55   Median :21.65   Median :21.65  
#>  Mean   :21.66   Mean   :21.66   Mean   :21.71   Mean   :21.75  
#>  3rd Qu.:23.64   3rd Qu.:23.62   3rd Qu.:23.62   3rd Qu.:23.70  
#>  Max.   :29.52   Max.   :29.42   Max.   :29.43   Max.   :29.48  
#>  NA's   :44      NA's   :40      NA's   :40      NA's   :46     
#>    125amol_R2      125amol_R3      250amol_R1      250amol_R2   
#>  Min.   :13.54   Min.   :14.77   Min.   :14.55   Min.   :14.73  
#>  1st Qu.:19.77   1st Qu.:19.76   1st Qu.:19.74   1st Qu.:19.72  
#>  Median :21.64   Median :21.65   Median :21.65   Median :21.61  
#>  Mean   :21.73   Mean   :21.73   Mean   :21.71   Mean   :21.69  
#>  3rd Qu.:23.68   3rd Qu.:23.65   3rd Qu.:23.62   3rd Qu.:23.64  
#>  Max.   :29.47   Max.   :29.42   Max.   :29.43   Max.   :29.41  
#>  NA's   :46      NA's   :48      NA's   :54      NA's   :51
table(dataPL$annot[,"SpecType"], useNA="always")
#> 
#>       conta mainSpecies       spike        <NA> 
#>           1        1137          48           0

Now we can summarize the presence of UPS1 proteins after treatment by Proline : In sum, 48 UPS1 proteins were found, 0 are missing.

Uniform Re-Arranging Of Data

For easy and proper comparisons we need to make sure all columns are in the same order, however using different software, this is not immediately the case. The basic names of the groups have already been figured out using the sample meta-data, notably the sdfr.

## bring all results (MaxQuant,ProteomeDiscoverer, ...) in same ascending order
## as reference will use the order from ProteomeDiscoverer, it's output is already in a convenient order
sampNa <- colnames(dataPD$quant)

## it is more convenient to re-order columns this way in each project
dataPD <- corColumnOrder(dataPD, sampNames=sampNa)          # already in good order
#> corColumnOrder : Quant/counting data already in good order ..
dataMQ <- corColumnOrder(dataMQ, replNames=paste0("UPS1_",sub("amol_", "amol_R", colnames(dataMQ$quant))), sampNames=sampNa)  # incl canged names
dataPL <- corColumnOrder(dataPL, replNames=paste0("UPS1_",colnames(dataPL$quant)), sampNames=sampNa)               # incl canged names
#> corColumnOrder : Quant/counting data already in good order ..

At import we made use of the argument specPref (specifying ‘mainSpecies’, ‘conta’ and ‘spike’) which allows to build categories based on searching keywords based on the initial annotation. In turn, we obtain the labels : ‘main Spe’ for yeast (ie matrix), ‘species2’ for the UPS1 (ie spike) ‘conta’ for contaminants. Let’s replace the first two generic terms by more specific ones (ie ‘Yeast’ and ‘UPS1’) :

## Need to rename $annot[,"SpecType"]
dataPD <- replSpecType(dataPD, replBy=cbind(old=c("mainSpe","species2"), new=c("Yeast","UPS1")))
dataMQ <- replSpecType(dataMQ, replBy=cbind(old=c("mainSpe","species2"), new=c("Yeast","UPS1")))
dataPL <- replSpecType(dataPL, replBy=cbind(old=c("mainSpe","species2"), new=c("Yeast","UPS1")))

## Need to address missing ProteinNames (UPS1) due to missing tags in Fasta
dataPD <- replMissingProtNames(dataPD)
#> replreplMissingProtNames :  ..trying to replace 1295 'EntryName'
dataMQ <- replMissingProtNames(dataMQ)
#> replreplMissingProtNames :  ..trying to replace 5 'EntryName'
dataPL <- replMissingProtNames(dataPL)
    table(dataPD$annot[,"SpecType"])
#> 
#> mainSpecies       spike 
#>        1239          48

## synchronize order of groups
(grp9 <- dataMQ$sampleSetup$level)
#> Group_9 Group_9 Group_9 Group_2 Group_2 Group_2 Group_5 Group_5 Group_5 Group_8 
#>       9       9       9       2       2       2       5       5       5       8 
#> Group_8 Group_8 Group_4 Group_4 Group_4 Group_7 Group_7 Group_7 Group_1 Group_1 
#>       8       8       4       4       4       7       7       7       1       1 
#> Group_1 Group_3 Group_3 Group_3 Group_6 Group_6 Group_6 
#>       1       3       3       3       6       6       6
names(grp9) <- rep(paste0(UPSconc,"amol"), each=3)
dataPL$sampleSetup$groups <- dataMQ$sampleSetup$groups <- dataPD$sampleSetup$groups <- grp9  # synchronize order of groups
## extract names of quantified UPS1-proteins
NamesUpsPD <- dataPD$annot[which(dataPD$annot[,"SpecType"]=="spike"), "Accession"]
NamesUpsMQ <- dataMQ$annot[which(dataMQ$annot[,"SpecType"]=="spike"), "Accession"]
NamesUpsPL <- dataPL$annot[which(dataPL$annot[,"SpecType"]=="spike"), "Accession"]
tabS <- mergeVectors(PD=table(dataPD$annot[,"SpecType"]), MQ=table(dataMQ$annot[,"SpecType"]), PL=table(dataPL$annot[,"SpecType"]))
tabT <- mergeVectors(PD=table(dataPD$annot[,"Species"]), MQ=table(dataMQ$annot[,"Species"]), PL=table(dataPL$annot[,"Species"]))
tabS[which(is.na(tabS))] <- 0
tabT[which(is.na(tabT))] <- 0
kable(cbind(tabS[,2:1], tabT), caption="Number of proteins identified, by custom tags, species and software")
Number of proteins identified, by custom tags, species and software
mainSpecies conta Gallus gallus Homo sapiens Mus musculus Saccharomyces cerevisiae Saccharomyces cerevisiae (strain ATCC 204508 / S288c) Sus scrofa
PD 1239 0 0 44 0 0 1239 0
MQ 1047 9 1 49 1 1047 0 1
PL 1137 1 0 48 0 1137 0 1

The initial fasta file also contained the yeast strain number, this has been stripped off when using default parameters.


Basic Data Treatment

Structure of Experiment

The global structure of experiments can be provided as sdrf-file and/or from meta-data stored with the experimental data read. For convenience, this information about the groups of replicates was already deduced and can be found (for example) in dataMQ\(sampleSetup\)sdrf.

kable(cbind(dataMQ$sampleSetup$sdrf[,c(23,7,19,22)], groups=dataMQ$sampleSetup$groups))
comment.data.file. characteristics.spiked.compound. comment.modification.parameters..2 comment.file.uri. groups
25 UPS1_50amol_R1.raw CT=mixture;QY=50 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_50amol_R1.raw 9
26 UPS1_50amol_R2.raw CT=mixture;QY=50 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_50amol_R2.raw 9
27 UPS1_50amol_R3.raw CT=mixture;QY=50 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_50amol_R3.raw 9
4 UPS1_125amol_R1.raw CT=mixture;QY=125 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_125amol_R1.raw 2
5 UPS1_125amol_R2.raw CT=mixture;QY=125 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_125amol_R2.raw 2
6 UPS1_125amol_R3.raw CT=mixture;QY=125 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_125amol_R3.raw 2
13 UPS1_250amol_R1.raw CT=mixture;QY=250 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_250amol_R1.raw 5
14 UPS1_250amol_R2.raw CT=mixture;QY=250 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_250amol_R2.raw 5
15 UPS1_250amol_R3.raw CT=mixture;QY=250 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_250amol_R3.raw 5
22 UPS1_500amol_R1.raw CT=mixture;QY=500 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_500amol_R1.raw 8
23 UPS1_500amol_R2.raw CT=mixture;QY=500 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_500amol_R2.raw 8
24 UPS1_500amol_R3.raw CT=mixture;QY=500 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_500amol_R3.raw 8
10 UPS1_2500amol_R1.raw CT=mixture;QY=2500 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_2500amol_R1.raw 4
11 UPS1_2500amol_R2.raw CT=mixture;QY=2500 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_2500amol_R2.raw 4
12 UPS1_2500amol_R3.raw CT=mixture;QY=2500 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_2500amol_R3.raw 4
19 UPS1_5000amol_R1.raw CT=mixture;QY=5000 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_5000amol_R1.raw 7
20 UPS1_5000amol_R2.raw CT=mixture;QY=5000 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_5000amol_R2.raw 7
21 UPS1_5000amol_R3.raw CT=mixture;QY=5000 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_5000amol_R3.raw 7
1 UPS1_12500amol_R1.raw CT=mixture;QY=12500 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_12500amol_R1.raw 1
2 UPS1_12500amol_R2.raw CT=mixture;QY=12500 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_12500amol_R2.raw 1
3 UPS1_12500amol_R3.raw CT=mixture;QY=12500 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_12500amol_R3.raw 1
7 UPS1_25000amol_R1.raw CT=mixture;QY=25000 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_25000amol_R1.raw 3
8 UPS1_25000amol_R2.raw CT=mixture;QY=25000 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_25000amol_R2.raw 3
9 UPS1_25000amol_R3.raw CT=mixture;QY=25000 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_25000amol_R3.raw 3
16 UPS1_50000amol_R1.raw CT=mixture;QY=50000 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_50000amol_R1.raw 6
17 UPS1_50000amol_R2.raw CT=mixture;QY=50000 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_50000amol_R2.raw 6
18 UPS1_50000amol_R3.raw CT=mixture;QY=50000 amol;CN=UPS1;CV=Standards Research Group NT=Acetyl;AC=UNIMOD:67;PP=Protein N-term;MT=variable https://ftp.ebi.ac.uk/pride-archive/2015/12/PXD001819/UPS1_50000amol_R3.raw 6

Normalization

No additional normalization is needed, all data were already median normalized to the host proteins (ie Saccharomyces cerevisiae) after importing the initial quantification-output using ‘readMaxQuantFile()’, ‘readProlineFile()’ and ‘readProteomeDiscovererFile()’.

Presence of NA-values

As mentioned in the general vignette of this package, ‘wrProteoVignette1’, it is important to investigate the nature of NA-values. In particular, checking the hypothesis that NA-values originate from very low abundance instances is very important for deciding how to treat NA-values furtheron.

## Let's inspect NA values from ProteomeDiscoverer as graphic
matrixNAinspect(dataPD$quant, gr=grp9, tit="ProteomeDiscoverer")
#> stableMode : Method='density',  length of x =970, 'bandw' has been set to 44

## Let's inspect NA values from MaxQuant as graphic
matrixNAinspect(dataMQ$quant, gr=grp9, tit="MaxQuant")
#> stableMode : Method='density',  length of x =1142, 'bandw' has been set to 47

## Let's inspect NA values from Proline as graphic
matrixNAinspect(dataPL$quant, gr=grp9, tit="Proline")
#> stableMode : Method='density',  length of x =413, 'bandw' has been set to 28

A key element to understand the nature of NA-value is to investigate their NA-neighbours. If a given protein has for just one of the 3 replicates an NA, the other two valid quantifications can be considered as NA-neighbours. In the figures above all NA-neighbours are shown in the histogram and their mode is marked by an arrow. One can see, that NA-neighbours are predominantely (but not exclusively) part of the lower quantitation values. This supports the hypothesis that NAs occur most frequently with low abundance proteins.

NA-Imputation and Statistical Testing for Changes in Abundance

NA-values represent a challange for statistical testing. In addition, techniques like PCA don’t allow NAs, neither.

The number of NAs varies between samples : Indeed, very low concentrations of UPS1 are difficult to get detected and contribute largely to the NAs (as we will see later in more detail). Since the amout of yeast proteins (ie the matrix in this setup) stays constant across all samples, yeast proteins should always get detected the same way.

## Let's look at the number of NAs. Is there an accumulated number in lower UPS1 samples ?
tabSumNA <- rbind(PD=sumNAperGroup(dataPD$raw, grp9), MQ=sumNAperGroup(dataMQ$raw, grp9), PL=sumNAperGroup(dataPL$raw, grp9) )
kable(tabSumNA, caption="Number of NAs per group of samples", align="r")
Number of NAs per group of samples
9 2 5 8 4 7 1 3 6
PD 272 272 255 232 204 207 195 209 220
MQ 318 334 323 337 282 297 302 330 322
PL 124 140 157 140 137 139 131 141 131

In the section above we investigated the circumstances of NA-instances and provided evidence that NA-values typically represent proteins with low abundance which frequently ended up as non-detectable (NA). Thus, we hypothesize that (in most cases) NA-values might also have been detected in quantities like their NA-neighbours. In consequence, we will model a normal distribution based on the NA-neighbours and use for substituting.

The function testRobustToNAimputation() from this package (wrProteo) allows to perform NA-imputation and subsequent statistical testing (after repeated imputation) between all groups of samples (see also the general vignette). One of the advantages of this implementation, is that multiple rounds of imputation are run, so that final results (including pair-wise testing) get stabilized to (rare) stochastic effects. For this reason one may also speak of stabilized NA-imputations.

The statistical tests used underneith make use of the shrinkage-procedure provided from the empirical Bayes procedure as implemented to the Bioconductor package limma, see also Ritchie et al 2015. In addition, various formats of multiple testing correction can be added to the results : Benjamini-Hochberg FDR (lateron referred to as BH or BH-FDR, see FDR on Wikipedia, see also Benjamini and Hochberg 1995), local false discovery rate (lfdr, using the package fdrtool, see Strimmer 2008), or modified testing by ROTS, etc … In this vignette we will make use of the BH-FDR.

We are ready to launch the NA-imputation and testing for data from ProteomeDiscoverer. Please note, that the procedure including repetive NA-imputations may take a few seconds.

testPD <- testRobustToNAimputation(dataPD, imputMethod="informed")     # ProteomeDiscoverer
#> testRobustToNAimputation : matrixNAneighbourImpute : stableMode : Method='density',  length of x =970, 'bandw' has been set to 44
#> testRobustToNAimputation : matrixNAneighbourImpute :  n.woNA= 32899 , n.NA = 2066
#>     Imputing based on 'informed' using mode= 17.34 and sd= 0.5
#>     Note, mean for imputation is  below 0.05  quantile !!

Then for MaxQuant …

testMQ <- testRobustToNAimputation(dataMQ, imputMethod="informed")      # MaxQuant , ok
#> testRobustToNAimputation : matrixNAneighbourImpute : stableMode : Method='density',  length of x =1142, 'bandw' has been set to 47
#> testRobustToNAimputation : matrixNAneighbourImpute :  n.woNA= 26963 , n.NA = 2845
#>     Imputing based on 'informed' using mode= 21.49 and sd= 0.5
#>     Note, mean for imputation is  below 0.05  quantile !!

And finally for Proline :

testPL <- testRobustToNAimputation(dataPL, imputMethod="informed")      # Proline
#> testRobustToNAimputation : matrixNAneighbourImpute : stableMode : Method='density',  length of x =413, 'bandw' has been set to 28
#> testRobustToNAimputation : matrixNAneighbourImpute :  n.woNA= 30782 , n.NA = 1240
#>     Imputing based on 'informed' using mode= 18.74 and sd= 0.5
#>     Note, mean for imputation is  below 0.05  quantile !!

From these results we’ll use i) the NA-imputed version of our datasets for plotting principal components (PCA) and ii) the (stabilized) testing results for counting TP, FP, etc and to construct ROC curves.

Let’s add the NA-imputed data to our main object :

dataPD$datImp <- testPD$datImp       # recuperate imputeded data to main data-object
dataMQ$datImp <- testMQ$datImp
dataPL$datImp <- testPL$datImp

Analysis Using All Proteins Identified (Matrix + UPS1)

In this section we’ll consider all proteins identified and quantified in a pair-wise fashion, using the t-tests already run in the previous section. As mentioned, the experimental setup is very special, since all proteins that are truly changing are known in advance (the UPS1 spike-in proteins). Tables get constructed by counting based on various thresholds for considering given protein abundances as differential or not. A traditional 5 percent FDR cut-off is used for Volcano-plots, while ROC-curves allow inspecting the entire range of potential cut-off values.

Pairwise Testing Summary

A very universal and simple way to analyze data is by checking as several pairwise comparisons, in particular, if the experimental setup does not include complete multifactorial plans.

This UPS1 spike-in experiment has 27 samples organized (according to meta-information) as 9 groups. Thus, one obtains in total 36 pair-wise comparisons which will make comparisons very crowded. The publication by Ramus et al 2016 focussed on 3 pairwise comparisons only. In this vignette it is shown how all of them can get considered.

Now, we’ll construct a table showing all possible pairwise-comparisons. Using the function numPairDeColNames() we can easily extract the UPS1 concentrations as numeric content and show the (log-)ratio of the pairwise comparisons (column ‘log2rat’), the final concentrations (columns ‘conc1’ and ‘conc2’, in amol) and the number of differentially abundant proteins passing 5% FDR (using classical Benjamini-Hochberg FDR (columns ‘sig.xx.BH’) or lfdr (Strimmer 2008, columns ‘sig._xx_.lfdr’ ).

## The number of differentially abundant proteins passing 5% FDR (ProteomeDiscoverer and MaxQuant)
signCount <- cbind( sig.PD.BH=colSums(testPD$BH < 0.05, na.rm=TRUE), sig.PD.lfdr=if("lfdr" %in% names(testPD)) colSums(testPD$lfdr < 0.05, na.rm=TRUE),
  sig.MQ.BH=colSums(testMQ$BH < 0.05, na.rm=TRUE), sig.MQ.lfdr=if("lfdr" %in% names(testMQ)) colSums(testMQ$lfdr < 0.05, na.rm=TRUE),
  sig.PL.BH=colSums(testPL$BH < 0.05, na.rm=TRUE), sig.PL.lfdr=if("lfdr" %in% names(testPL)) colSums(testPL$lfdr < 0.05, na.rm=TRUE)  )

table1 <- numPairDeColNames(testPD$BH, stripTxt="amol", sortByAbsRatio=TRUE)
table1 <- cbind(table1, signCount[table1[,1],])
rownames(table1) <- colnames(testMQ$BH)[table1[,1]]

kable(table1, caption="All pairwise comparisons and number of significant proteins", align="c")
All pairwise comparisons and number of significant proteins
index log2rat conc1 conc2 sig.PD.BH sig.PD.lfdr sig.MQ.BH sig.MQ.lfdr sig.PL.BH sig.PL.lfdr
50000amol-50amol 34 9.966 50 50000 578 532 487 443 576 490
25000amol-50amol 31 8.966 50 25000 597 538 441 387 548 483
125amol-50000amol 12 8.644 125 50000 369 286 392 339 415 342
12500amol-50amol 29 7.966 50 12500 521 481 324 260 483 402
125amol-25000amol 3 7.644 125 25000 344 279 351 291 303 238
250amol-50000amol 15 7.644 250 50000 385 315 459 383 329 260
12500amol-125amol 1 6.644 125 12500 226 187 124 97 234 187
25000amol-250amol 9 6.644 250 25000 235 196 374 328 214 151
50000amol-500amol 27 6.644 500 50000 364 303 467 464 371 286
5000amol-50amol 35 6.644 50 5000 609 544 379 335 528 484
12500amol-250amol 7 5.644 250 12500 136 96 111 89 132 100
25000amol-500amol 24 5.644 500 25000 250 179 371 348 204 142
2500amol-50amol 32 5.644 50 2500 563 485 335 277 498 462
125amol-5000amol 17 5.322 125 5000 272 242 98 70 209 152
12500amol-500amol 22 4.644 500 12500 162 101 97 55 132 86
125amol-2500amol 5 4.322 125 2500 193 163 91 78 182 154
2500amol-50000amol 14 4.322 2500 50000 302 223 485 456 263 196
250amol-5000amol 20 4.322 250 5000 199 129 87 55 144 112
25000amol-2500amol 6 3.322 2500 25000 49 34 458 437 73 51
2500amol-250amol 10 3.322 250 2500 113 86 36 30 104 74
50000amol-5000amol 21 3.322 5000 50000 312 237 469 446 319 281
5000amol-500amol 28 3.322 500 5000 182 132 84 63 134 103
500amol-50amol 36 3.322 50 500 441 369 229 175 385 375
12500amol-2500amol 4 2.322 2500 12500 20 12 75 116 40 29
25000amol-5000amol 18 2.322 5000 25000 52 36 384 403 72 51
2500amol-500amol 25 2.322 500 2500 129 86 60 31 103 76
250amol-50amol 33 2.322 50 250 359 287 190 147 324 283
12500amol-50000amol 11 2.000 12500 50000 219 144 213 168 170 109
125amol-500amol 23 2.000 125 500 22 17 5 2 38 33
12500amol-5000amol 16 1.322 5000 12500 24 15 8 4 36 26
125amol-50amol 30 1.322 50 125 288 242 140 112 227 180
12500amol-25000amol 2 1.000 12500 25000 12 10 85 83 29 15
125amol-250amol 8 1.000 125 250 18 10 1 0 2 1
25000amol-50000amol 13 1.000 25000 50000 143 88 64 42 95 62
2500amol-5000amol 19 1.000 2500 5000 13 10 2 0 16 10
250amol-500amol 26 1.000 250 500 6 2 1 0 3 2
resMQ1 <- extractTestingResults(testMQ, compNo=1, thrsh=0.05, FCthrs=2)
resPD1 <- extractTestingResults(testPD, compNo=1, thrsh=0.05, FCthrs=2)
resPL1 <- extractTestingResults(testPL, compNo=1, thrsh=0.05, FCthrs=2)

You can see that in numerous cases much more than the 48 UPS1 proteins showed up significant, ie yeast proteins supposed to remain constant also showed up in part as ‘sigificantly changing’. However, some proteins with enthousiastic FDR values have very low log-FC amplitude and will be removed by filtering in the following steps.

par(mar=c(5.5, 4.7, 4, 1))
imageW(table1[,c("sig.PD.BH","sig.MQ.BH","sig.PL.BH" )], col=rev(RColorBrewer::brewer.pal(9,"YlOrRd")),
  transp=FALSE, tit="Number of BH.FDR passing proteins by the quantification approaches")
mtext("Dark red for high number signif proteins", cex=0.75)

In the original Ramus et al 2016 et al paper only 3 pairwise comparisons were further analyzed :

## Selection in Ramus paper
kable(table1[which(rownames(table1) %in% colnames(testPD$BH)[c(2,21,27)]),], caption="Selected pairwise comparisons (as in Ramus et al)", align="c")
Selected pairwise comparisons (as in Ramus et al)
index log2rat conc1 conc2 sig.PD.BH sig.PD.lfdr sig.MQ.BH sig.MQ.lfdr sig.PL.BH sig.PL.lfdr
50000amol-500amol 27 6.644 500 50000 364 303 467 464 371 286
50000amol-5000amol 21 3.322 5000 50000 312 237 469 446 319 281
12500amol-25000amol 2 1.000 12500 25000 12 10 85 83 29 15

Here we’ll consider all possible pairwise comparisons, as shown below.

Volcano Plots

Volcano-plots offer additional insight in how statistical test results relate to log-fold-change of pair-wise comparisons. In addition, we can mark the different protein-groups (or species) by different symbols, see also the general vignette ‘wrProteoVignette1’ (from this package) and the vignette to the package wrGraph. Counting the number of proteins passing a classical threshold for differential expression combined with a filter for minimum log-fold-change is a good way to start.

As mentioned, the dataset from Ramus et al 2016 contains 9 different levels of UPS1 concentrations, in consequence 36 pair-wise comparisons are possible. Again, plotting all possible Volcano plots would make way too crowded plots, instead we’ll try to summarize (see ROC curves), cluster into groups and finally plot only a few representative ones.

ROC for Multiple Pairs

Receiver Operator Curves (ROC) curves display sensitivity (True Positive Rate) versus 1-Specificity (False Positive Rate). They are typically used as illustrate and compare the discriminiative capacity of a yes/no decision system (here: differential abundance or not), see eg also the original publication Hand and Till 2001.

The data get constructed by sliding through a panel of threshold-values for the statistical tests instead of just using 0.05. Due to the experimental setup we know that all yeast proteins should stay constant and only UPS1 proteins are expected to change. For each of these threshold values one counts the number of true positives (TP), false positives (FP) etc, allowing then to calculate sensitivity and specificity.

In the case of bechmarking quantitation efforts, ROC curves are used to judge how well heterologous spikes UPS1 proteins can be recognized as differentially abundant while constant yeast matrix proteins should not get classified as differential. Finally, ROC curves let us also gain some additional insights in the question which cutoff may be optimal or if the commonly used 5-percent FDR threshld cutoff allows getting the best out of the testing system.

The next step consists in calculating the area under the curve (AUC) for the individual profiles of each pairwise comparison. Below, these calculations of summarizeForROC() are run in batch.

## calulate  AUC for each ROC
layout(1)
rocPD <- lapply(table1[,1], function(x) summarizeForROC(testPD, useComp=x, annotCol="SpecType", spec=c("mainSpecies","spike"), tyThr="BH", plotROC=FALSE,silent=TRUE))
rocMQ <- lapply(table1[,1], function(x) summarizeForROC(testMQ, useComp=x, annotCol="SpecType", spec=c("mainSpecies","spike"), tyThr="BH", plotROC=FALSE,silent=TRUE))
rocPL <- lapply(table1[,1], function(x) summarizeForROC(testPL, useComp=x, annotCol="SpecType", spec=c("mainSpecies","spike"), tyThr="BH", plotROC=FALSE,silent=TRUE))

# we still need to add the names for the pair-wise groups:
names(rocPD) <- names(rocMQ) <- names(rocPL) <- rownames(table1)
AucAll <- cbind(ind=table1[match(names(rocPD), rownames(table1)),"index"], clu=NA,
  PD=sapply(rocPD, AucROC), MQ=sapply(rocMQ, AucROC), PL=sapply(rocPL, AucROC) )

To provide a quick overview, the clustered AUC values are displayed as PCA :

try(biplot(prcomp(AucAll[,names(methNa)]), cex=0.7, main="PCA of AUC from ROC Curves"))

On this PCA one can see the three software types in red. We can see that AUC values from MaxQuant correlate somehow less to Proline and ProteomeDiscoverer (red arrows). The pair-wise ratios constructed from the different rations are shown in black. They form a compact area with mostly wide ratios (one rather high and one low concentration of UPS1 proteins). Besides, there is a number of disperse points, typically containig the point of 125 and/or 250 fmol. These disperse points do not replicate well and follow their own characteristics captured by PC2.

Now we are ready to inspect the 5 clusters in detail :

Grouping of ROC Curves to Display Representative Ones

As mentioned, there are too many pair-wise combinations available for plotting and inspecting all ROC-curves. So we can try to group similar pairwise comparison AUC values into clusters and then easily display representative examples for each cluster/group. Again, we (pre)define that we want to obtain 5 groups (like customer-ratings from 5 to 1 stars), a k-Means clustering approach was chosen.

## number of groups for clustering
nGr <- 5
## K-Means clustering
kMAx <- stats::kmeans(standardW(AucAll[,c("PD","MQ","PL")]), nGr)$cluster
   table(kMAx)
#> kMAx
#>  1  2  3  4  5 
#> 14  6  1  6  9
AucAll[,"clu"] <- kMAx
AucAll <- reorgByCluNo(AucAll, cluNo=kMAx, useColumn=c("PD","MQ","PL"))
AucAll <- cbind(AucAll, iniInd=table1[match(rownames(AucAll), rownames(table1)), "index"])
colnames(AucAll)[1:(which(colnames(AucAll)=="index")-1)] <- paste("Auc",colnames(AucAll)[1:(which(colnames(AucAll)=="index")-1)], sep=".")
AucAll[,"cluNo"] <- rep(nGr:1, table(AucAll[,"cluNo"]))        # make cluNo descending

kMAx <- AucAll[,"cluNo"]      # update
  table(AucAll[,"cluNo"])
#> 
#>  1  2  3  4  5 
#>  6  1  9  6 14
 ## note : column 'index' is relative to table1, iniInd to ordering inside objects from clustering

To graphically summarize the AUC values, the clustered AUC values are plotted accompagnied by the geometric mean:

try(profileAsClu(AucAll[,c(1:length(methNa),(length(methNa)+2:3))], clu="cluNo", meanD="geoMean", tit="Pairwise Comparisons as Clustered AUC from ROC Curves",
  xlab="Comparison number", ylab="AUC", meLty=1, meLwd=3))

From this figure we can see clearly that there are some pairwise comparisons where all initial analysis-software results yield high AUC values, while other pairwise comparisons less discriminative power.

Again, now we can select a representative pairwise-comparison for each cluster (from the center of each cluster):

AucRep <- table(AucAll[,"cluNo"])[rank(unique(AucAll[,"cluNo"]))]   # representative for each cluster
AucRep <- round(cumsum(AucRep) -AucRep/2 +0.1)

## select representative for each cluster
kable(round(AucAll[AucRep,c("Auc.PD","Auc.MQ","Auc.PL","cluNo")],3), caption="Selected representative for each cluster ", align="c")
Selected representative for each cluster
Auc.PD Auc.MQ Auc.PL cluNo
2500amol-50000amol 0.967 0.997 0.992 5
25000amol-5000amol 0.954 0.937 0.978 4
2500amol-500amol 0.898 0.883 0.963 3
125amol-2500amol 0.721 0.486 0.947 2
125amol-250amol 0.553 0.415 0.499 1

Now we can check if some experimental UPS1 log-fold-change have a bias for some clusters.

ratTab <- sapply(5:1, function(x) { y <- table1[match(rownames(AucAll),rownames(table1)),]
  table(factor(signif(y[which(AucAll[,"cluNo"]==x),"log2rat"],1), levels=unique(signif(table1[,"log2rat"],1))) )})
colnames(ratTab) <- paste0("\nclu",5:1,"\nn=",rev(table(kMAx)))
layout(1)
imageW(ratTab, tit="Frequency of rounded log2FC in the 5 clusters", xLab="log2FC (rounded)", col=RColorBrewer::brewer.pal(9,"YlOrRd"),las=1)
mtext("Dark red for enrichment of given pair-wise ratio", cex=0.7)

We can see, that the cluster of best ROC-curves (cluster 5) covers practically all UPS1 log-ratios from this experiment without being restricted just to the high ratios.

Plotting ROC Curves for the Best Cluster (the ‘+++++’)

colPanel <- 2:5
gr <- 5
j <- match(rownames(AucAll)[AucRep[6-gr]], colnames(testPD$t))

## table of all proteins in cluster
useLi <- which(AucAll[,"cluNo"]==gr)
tmp <- cbind(round(as.data.frame(AucAll)[useLi,c("cluNo","Auc.PD","Auc.MQ","Auc.PL")],3),
  as.data.frame(table1)[match(names(useLi),rownames(table1)), c(2,5,7,9)])
kable(tmp, caption="AUC details for best pairwise-comparisons ", align="c")
AUC details for best pairwise-comparisons
cluNo Auc.PD Auc.MQ Auc.PL log2rat sig.PD.BH sig.MQ.BH sig.PL.BH
250amol-50000amol 5 0.982 0.999 0.995 7.644 385 459 329
50000amol-500amol 5 0.981 0.998 0.994 6.644 364 467 371
25000amol-250amol 5 0.978 0.992 0.997 6.644 235 374 214
125amol-50000amol 5 0.975 0.996 0.995 8.644 369 392 415
12500amol-250amol 5 0.974 0.994 0.997 5.644 136 111 132
25000amol-500amol 5 0.977 0.990 0.994 5.644 250 371 204
2500amol-50000amol 5 0.967 0.997 0.992 4.322 302 485 263
12500amol-500amol 5 0.969 0.987 0.993 4.644 162 97 132
50000amol-50amol 5 0.973 0.984 0.990 9.966 578 487 576
50000amol-5000amol 5 0.966 0.994 0.986 3.322 312 469 319
25000amol-50amol 5 0.973 0.981 0.990 8.966 597 441 548
25000amol-2500amol 5 0.958 0.985 0.993 3.322 49 458 73
12500amol-2500amol 5 0.957 0.995 0.982 2.322 20 75 40
12500amol-50amol 5 0.931 0.986 0.988 7.966 521 324 483
## frequent concentrations :
layout(matrix(1:2), heights=c(1,2.5))
plotConcHist(mat=tmp, ref=table1)

## representative ROC
jR <- match(rownames(AucAll)[AucRep[6-gr]], names(rocPD))
plotROC(rocPD[[jR]], rocMQ[[jR]], rocPL[[jR]], col=colPanel, methNames=methNa, pointSi=0.8, xlim=c(0,0.45),
  txtLoc=c(0.12,0.1,0.033), tit=paste("Cluster",gr," Example: ",names(rocPD)[jR]), legCex=1)

## This required package 'wrGraph' at version 1.2.5 (or higher)
if(packageVersion("wrGraph")  >= "1.2.5") {
  layout(matrix(1:4,ncol=2))
  try(VolcanoPlotW(testPD, useComp=j, FCthrs=1.5, FdrThrs=0.05, annColor=c(4,2,3), ProjNa=methNa[1], expFCarrow=TRUE, silent=TRUE),silent=TRUE)
  try(VolcanoPlotW(testMQ, useComp=j, FCthrs=1.5, FdrThrs=0.05, annColor=c(4,2,3), ProjNa=methNa[2], expFCarrow=TRUE, silent=TRUE),silent=TRUE)
  try(VolcanoPlotW(testPL, useComp=j, FCthrs=1.5, FdrThrs=0.05, annColor=c(4,2,3), ProjNa=methNa[3], expFCarrow=TRUE, silent=TRUE),silent=TRUE)}

ROC Curves for 2nd Best Cluster (the ‘++++’)

gr <- 4
j <- match(rownames(AucAll)[AucRep[6-gr]], colnames(testPD$t))

## table of all proteins in cluster
useLi <- which(AucAll[,"cluNo"]==gr)
tmp <- cbind(round(as.data.frame(AucAll)[useLi,c("cluNo","Auc.PD","Auc.MQ","Auc.PL")],3),
  as.data.frame(table1)[match(names(useLi),rownames(table1)), c(2,5,7,9)])
kable(tmp, caption="AUC details for cluster '++++' pairwise-comparisons ", align="c")
AUC details for cluster ‘++++’ pairwise-comparisons
cluNo Auc.PD Auc.MQ Auc.PL log2rat sig.PD.BH sig.MQ.BH sig.PL.BH
250amol-5000amol 4 0.971 0.949 0.993 4.322 199 87 144
5000amol-500amol 4 0.964 0.929 0.987 3.322 182 84 134
25000amol-5000amol 4 0.954 0.937 0.978 2.322 52 384 72
12500amol-50000amol 4 0.936 0.952 0.979 2.000 219 213 170
125amol-25000amol 4 0.956 0.914 0.995 7.644 344 351 303
12500amol-5000amol 4 0.923 0.927 0.938 1.322 24 8 36
## frequent concentrations :
layout(matrix(1:2), heights=c(1,2.5))
plotConcHist(mat=tmp, ref=table1)

## representative ROC
jR <- match(rownames(AucAll)[AucRep[6-gr]], names(rocPD))
plotROC(rocPD[[jR]], rocMQ[[jR]], rocPL[[jR]], col=colPanel, methNames=methNa, pointSi=0.8, xlim=c(0,0.45),
  txtLoc=c(0.12,0.1,0.033), tit=paste("Cluster",gr," Example: ",names(rocPD)[jR]), legCex=1)

if(packageVersion("wrGraph")  >= "1.2.5"){
  layout(matrix(1:4,ncol=2))
  try(VolcanoPlotW(testPD, useComp=j, FCthrs=1.5, FdrThrs=0.05, annColor=c(4,2,3), ProjNa=methNa[1], expFCarrow=TRUE, silent=TRUE),silent=TRUE)
  try(VolcanoPlotW(testMQ, useComp=j, FCthrs=1.5, FdrThrs=0.05, annColor=c(4,2,3), ProjNa=methNa[2], expFCarrow=TRUE, silent=TRUE),silent=TRUE)
  try(VolcanoPlotW(testPL, useComp=j, FCthrs=1.5, FdrThrs=0.05, annColor=c(4,2,3), ProjNa=methNa[3], expFCarrow=TRUE, silent=TRUE),silent=TRUE)}

ROC Curves for the 3rd Best Cluster (the ‘+++’)

gr <- 3
j <- match(rownames(AucAll)[AucRep[6-gr]], colnames(testPD$t))

## table of all proteins in cluster
useLi <- which(AucAll[,"cluNo"]==gr)
tmp <- cbind(round(as.data.frame(AucAll)[useLi,c("cluNo","Auc.PD","Auc.MQ","Auc.PL")],3),
  as.data.frame(table1)[match(names(useLi),rownames(table1)), c(2,5,7,9)])
kable(tmp, caption="AUC details for cluster '+++' pairwise-comparisons ", align="c")
AUC details for cluster ‘+++’ pairwise-comparisons
cluNo Auc.PD Auc.MQ Auc.PL log2rat sig.PD.BH sig.MQ.BH sig.PL.BH
2500amol-250amol 3 0.928 0.866 0.982 3.322 113 36 104
125amol-5000amol 3 0.889 0.904 0.972 5.322 272 98 209
12500amol-125amol 3 0.877 0.884 0.992 6.644 226 124 234
5000amol-50amol 3 0.923 0.867 0.958 6.644 609 379 528
2500amol-500amol 3 0.898 0.883 0.963 2.322 129 60 103
2500amol-5000amol 3 0.811 0.958 0.923 1.000 13 2 16
25000amol-50000amol 3 0.855 0.882 0.931 1.000 143 64 95
2500amol-50amol 3 0.864 0.852 0.906 5.644 563 335 498
12500amol-25000amol 3 0.878 0.734 0.940 1.000 12 85 29
## frequent concentrations :
layout(matrix(1:2), heights=c(1,2.5))
plotConcHist(mat=tmp, ref=table1)

## representative ROC
jR <- match(rownames(AucAll)[AucRep[6-gr]], names(rocPD))
plotROC(rocPD[[jR]],rocMQ[[jR]],rocPL[[jR]], col=colPanel, methNames=methNa, pointSi=0.8, xlim=c(0,0.45),
  txtLoc=c(0.12,0.1,0.033), tit=paste("Cluster",gr," Example: ",names(rocPD)[jR]), legCex=1)

if(packageVersion("wrGraph")  >= "1.2.5"){
  layout(matrix(1:4,ncol=2))
  try(VolcanoPlotW(testPD, useComp=j, FCthrs=1.5, FdrThrs=0.05, annColor=c(4,2,3), ProjNa=methNa[1], expFCarrow=TRUE, silent=TRUE),silent=TRUE)
  try(VolcanoPlotW(testMQ, useComp=j, FCthrs=1.5, FdrThrs=0.05, annColor=c(4,2,3), ProjNa=methNa[2], expFCarrow=TRUE, silent=TRUE),silent=TRUE)
  try(VolcanoPlotW(testPL, useComp=j, FCthrs=1.5, FdrThrs=0.05, annColor=c(4,2,3), ProjNa=methNa[3], expFCarrow=TRUE, silent=TRUE),silent=TRUE)}

ROC Curves for the 4th Best Cluster (the ‘++’)

gr <- 2
j <- match(rownames(AucAll)[AucRep[6-gr]], colnames(testPD$t))

## table of all proteins in cluster
useLi <- which(AucAll[,"cluNo"]==gr)
tmp <- cbind(round(as.data.frame(AucAll)[useLi,c("cluNo","Auc.PD","Auc.MQ","Auc.PL")],3),
  as.data.frame(table1)[match(names(useLi),rownames(table1)), c(2,5,7,9)])
kable(tmp, caption="AUC details for cluster '++' pairwise-comparisons ", align="c")
AUC details for cluster ‘++’ pairwise-comparisons
cluNo Auc.PD Auc.MQ Auc.PL log2rat sig.PD.BH sig.MQ.BH sig.PL.BH
125amol-2500amol 2 0.721 0.486 0.947 4.322 193 91 182
## frequent concentrations :
layout(matrix(1:2), heights=c(1,2.5))
plotConcHist(mat=tmp, ref=table1)

## representative ROC
jR <- match(rownames(AucAll)[AucRep[6-gr]], names(rocPD))
plotROC(rocPD[[jR]], rocMQ[[jR]], rocPL[[jR]], col=colPanel, methNames=methNa, pointSi=0.8, xlim=c(0,0.45),
  txtLoc=c(0.12,0.1,0.033), tit=paste("Cluster",gr," Example: ",names(rocPD)[jR]), legCex=1)

if(packageVersion("wrGraph")  >= "1.2.5"){
  layout(matrix(1:4,ncol=2))
  try(VolcanoPlotW(testPD, useComp=j, FCthrs=1.5, FdrThrs=0.05, annColor=c(4,2,3), ProjNa=methNa[1], expFCarrow=TRUE, silent=TRUE),silent=TRUE)
  try(VolcanoPlotW(testMQ, useComp=j, FCthrs=1.5, FdrThrs=0.05, annColor=c(4,2,3), ProjNa=methNa[2], expFCarrow=TRUE, silent=TRUE),silent=TRUE)
  try(VolcanoPlotW(testPL, useComp=j, FCthrs=1.5, FdrThrs=0.05, annColor=c(4,2,3), ProjNa=methNa[3], expFCarrow=TRUE, silent=TRUE),silent=TRUE)}

ROC Curves for the Weakest Cluster 1 (the ‘+’)

gr <- 1
j <- match(rownames(AucAll)[AucRep[6-gr]], colnames(testPD$t))

## table of all proteins in cluster
useLi <- which(AucAll[,"cluNo"]==gr)
tmp <- cbind(round(as.data.frame(AucAll)[useLi,c("cluNo","Auc.PD","Auc.MQ","Auc.PL")],3),
  as.data.frame(table1)[match(names(useLi),rownames(table1)), c(2,5,7,9)])
kable(tmp, caption="AUC details for cluster '+' pairwise-comparisons ", align="c")
AUC details for cluster ‘+’ pairwise-comparisons
cluNo Auc.PD Auc.MQ Auc.PL log2rat sig.PD.BH sig.MQ.BH sig.PL.BH
250amol-500amol 1 0.580 0.574 0.602 1.000 6 1 3
125amol-500amol 1 0.536 0.451 0.709 2.000 22 5 38
125amol-250amol 1 0.553 0.415 0.499 1.000 18 1 2
125amol-50amol 1 0.493 0.309 0.481 1.322 288 140 227
500amol-50amol 1 0.456 0.319 0.487 3.322 441 229 385
250amol-50amol 1 0.371 0.370 0.433 2.322 359 190 324
## frequent concentrations :
layout(matrix(1:2, ncol=1), heights=c(1,2.5))
plotConcHist(mat=tmp, ref=table1)

## representative ROC
jR <- match(rownames(AucAll)[AucRep[6-gr]], names(rocPD))
plotROC(rocPD[[jR]], rocMQ[[jR]], rocPL[[jR]], col=colPanel, methNames=methNa, pointSi=0.8, xlim=c(0,0.45),
  txtLoc=c(0.12,0.1,0.033), tit=paste("Cluster",gr," Example: ",names(rocPD)[jR]), legCex=1)

if(packageVersion("wrGraph")  >= "1.2.5"){
  layout(matrix(1:4,ncol=2))
  try(VolcanoPlotW(testPD, useComp=j, FCthrs=1.5, FdrThrs=0.05, annColor=c(4,2,3), ProjNa=methNa[1], expFCarrow=TRUE, silent=TRUE),silent=TRUE)
  try(VolcanoPlotW(testMQ, useComp=j, FCthrs=1.5, FdrThrs=0.05, annColor=c(4,2,3), ProjNa=methNa[2], expFCarrow=TRUE, silent=TRUE),silent=TRUE)
  try(VolcanoPlotW(testPL, useComp=j, FCthrs=1.5, FdrThrs=0.05, annColor=c(4,2,3), ProjNa=methNa[3], expFCarrow=TRUE, silent=TRUE),silent=TRUE)}
#> Warning in max(merg[passAll, "FDR"], na.rm = TRUE): no non-missing arguments to
#> max; returning -Inf
#> Warning in int_abline(a = a, b = b, h = h, v = v, untf = untf, ...): NaNs
#> produced


Analysis Focussing on UPS1 Spike-In Proteins Only

We know from the experimental setup that there were 48 UPS1 proteins) present in the commercial mix added to a constant background of yeast-proteins. The lowest concentrations are extremely challenging and it is no surprise that many of them were not detected at the lowest concentration(s). In order to choose among the various concentrations of UPS1, let’s look how many NAs are in each group of replicates (ie before NA-imputation), and in particular, the number of NAs among the UPS1 proteins.

Previsouly we’ve looked at the total number of NAs, now let’s focus just on the UPS1 proteins. Obviously, instances of non-quantified UPS1 proteins make the following comparisons using these samples rather insecure, since NA-imputation is just an ‘educated guess’.

tab1 <- rbind(PD=sumNAperGroup(dataPD$raw[which(dataPD$annot[,"SpecType"]=="UPS1"),], grp9),
  MQ=sumNAperGroup(dataMQ$raw[which(dataMQ$annot[,"SpecType"]=="UPS1"),], grp9),
  PL= sumNAperGroup(dataPL$raw[which(dataPL$annot[,"SpecType"]=="UPS1"),], grp9)  )
kable(tab1, caption="The number of NAs in the UPS1 proteins", align="c")
The number of NAs in the UPS1 proteins
9 2 5 8 4 7 1 3 6
PD 0 0 0 0 0 0 0 0 0
MQ 0 0 0 0 0 0 0 0 0
PL 0 0 0 0 0 0 0 0 0

One can see that starting the 5th level of UPS1 concentrations almost all UPS1 proteins were found in nearly all samples. In consequence we’ll avoid using all of them at all times, but this should be made depending on the very protein and quantification method.

Let’s look graphically at the number of NAs in each of the UPS1 proteins along the quantification methods :

countRawNA <- function(dat, newOrd=UPS1$ac, relative=FALSE) {  # count number of NAs per UPS protein and order as UPS
  out <- rowSums(is.na(dat$raw[match(newOrd,rownames(dat$raw)),]))
  if(relative) out/nrow(dat$raw) else out }

sumNAperMeth <- cbind(PD=countRawNA(dataPD), MQ=countRawNA(dataMQ), PL=countRawNA(dataPL) )
UPS1na <- sub("_UPS","",dataPL$annot[UPS1$ac,"EntryName"])
par(mar=c(6.8, 3.5, 4, 1))
imageW(sumNAperMeth, rowNa=UPS1na, tit="Number of NAs in UPS proteins", xLab="", yLab="",
  transp=FALSE, col=rev(RColorBrewer::brewer.pal(9,"YlOrRd")))
mtext("Dark red for high number of NAs",cex=0.7)

Typically the number of NAs is similar when comparing the different quantitation approaches, it tends to be a bit higher with MaxQuant. This means that some UPS1 proteins which are easier to (detect and) quantify than others. We can conclude, the capacity to successfully quantify a given protein depends on its abundance and its composition.

Similarity by PCA (UPS1 proteins only)

Plotting the principal components (PCA) typically allows to gain an overview on how samples are related to each other. This type of experiment is special for the fact that the majority of proteins is expected to remain constant (yeast matrix), while only the UPS1 proteins vary. Since we are primarily intereseted in the UPS1 proteins, the regular plots of PCA are not shown here, but PCA of the lines identified as UPS1.

Principal component analysis (PCA) cannot handle NA-values. Either all lines with any NAs have to be excluded, or data after NA-imputation have to be used. Here, the option of plotting data after NA-imputation was chosen (in the context of filtering UPS1 lines only one whould loose too many lines, ie proteins). Below plots are be made using the function plotPCAw() from the package wrGraph. Via indexing we choose only the lines./proteins with the annoation ‘spike’ (ie UPS1).

PCA of UPS1 for ProteomeDiscoverer

try(plotPCAw(testPD$datImp[which(testPD$annot[,"SpecType"]=="spike"),], sampleGrp=grp9, tit="PCA on ProteomeDiscoverer, UPS1 only (NAs imputed)", rowTyName="proteins", useSymb2=0, silent=TRUE), silent=TRUE)
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers

PCA of UPS1 for MaxQuant

try(plotPCAw(testMQ$datImp[which(testMQ$annot[,"SpecType"]=="spike"),], sampleGrp=grp9, tit="PCA on MaxQuant, UPS1 only (NAs imputed)", rowTyName="proteins", useSymb2=0, silent=TRUE), silent=TRUE)
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers

PCA of UPS1 for Proline

try(plotPCAw(testPL$datImp[which(testPL$annot[,"SpecType"]=="spike"),], sampleGrp=grp9, tit="PCA on Proline, UPS1 only (NAs imputed)", rowTyName="proteins", useSymb2=0, silent=TRUE), silent=TRUE)
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> plotPCAw : addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers
#> addBagPlot : Keep 3 out of 3 and consider 0 as outliers

Based on PCA plots one can see that the concentrations 125 - 500 aMol are very much alike and detecting differences may perform better when not combining them, as also confirmed by ROC part later. In the Screeplot we can see that the first principal component captures almost all variability. Thus, displaying the 3rd principal component (as done above) finally has no importance.

CV of Replicates

In order to have more data available for linear regression modelling it was decided to use UPS1 abundance values after NA-Imputation for linear regressions. Previously it was shown that NA values originate predominantly from absent or very low abundance quantitations, which justified relplacing NA values by low abundance values in a shrinkage like fashion.

As general indicator for data-quality and -usability let’s look at the intra-replicate variability. Here we plot all intra-group CVs (defined by UPS1-concentration), either the CVs for all quantified proteins or the UPS1 proteins only.

In the figure below the complete series (including yeast) is shown on the left side, the human UPS1 proteins only on the right side. Briefly, vioplots show a kernel-estimate for the distribution, in addition, a box-plot is also integrated (see vignette to package wrGraph).

## combined plot : all data (left), Ups1 (right)
layout(1:3)
sumNAinPD <- list(length=18)
sumNAinPD[2*(1:length(unique(grp9))) -1] <- as.list(as.data.frame(log2(rowGrpCV(testPD$datImp, grp9))))
sumNAinPD[2*(1:length(unique(grp9))) ] <- as.list(as.data.frame(log2(rowGrpCV(testPD$datImp[which(testPD$annot[,"SpecType"]=="spike"),], grp9))))
names(sumNAinPD)[2*(1:length(unique(grp9))) -1] <-  sub("amol","",unique(grp9))
names(sumNAinPD)[2*(1:length(unique(grp9))) ] <- paste(sub("amol","",unique(grp9)),"Ups",sep=".")
try(vioplotW(sumNAinPD, halfViolin="pairwise", tit="CV Intra Replicate, ProteomeDiscoverer", cexNameSer=0.6))
mtext("left part : all data\nright part: UPS1",adj=0,cex=0.8)

sumNAinMQ <- list(length=18)
sumNAinMQ[2*(1:length(unique(grp9))) -1] <- as.list(as.data.frame(log2(rowGrpCV(testMQ$datImp, grp9))))
sumNAinMQ[2*(1:length(unique(grp9))) ] <- as.list(as.data.frame(log2(rowGrpCV(testMQ$datImp[which(testMQ$annot[,"SpecType"]=="spike"),], grp9))))
names(sumNAinMQ)[2*(1:length(unique(grp9))) -1] <- sub("amol","",unique(grp9))                        # paste(unique(grp9),"all",sep=".")
names(sumNAinMQ)[2*(1:length(unique(grp9))) ] <- paste(sub("amol","",unique(grp9)),"Ups",sep=".")      #paste(unique(grp9),"Ups1",sep=".")
try(vioplotW(sumNAinMQ, halfViolin="pairwise", tit="CV intra replicate, MaxQuant",cexNameSer=0.6))
mtext("left part : all data\nright part: UPS1",adj=0,cex=0.8)

sumNAinPL <- list(length=18)
sumNAinPL[2*(1:length(unique(grp9))) -1] <- as.list(as.data.frame(log2(rowGrpCV(testPL$datImp, grp9))))
sumNAinPL[2*(1:length(unique(grp9))) ] <- as.list(as.data.frame(log2(rowGrpCV(testPL$datImp[which(testPL$annot[,"SpecType"]=="spike"),], grp9))))
names(sumNAinPL)[2*(1:length(unique(grp9))) -1] <-  sub("amol","",unique(grp9))
names(sumNAinPL)[2*(1:length(unique(grp9))) ] <- paste(sub("amol","",unique(grp9)),"Ups",sep=".")
try(vioplotW(sumNAinPL, halfViolin="pairwise", tit="CV Intra Replicate, Proline", cexNameSer=0.6))
mtext("left part : all data\nright part: UPS1",adj=0,cex=0.8)

The distribution of intra-group CV-values showed (without major surprise) that the highest UPS1 concentrations replicated best. This phenomenon also correlates with the content of NAs in the original data. When imputing NA-values it is a challange to respect the variability of the respective data (NA-neighbours) before NA-imputation. Many NA-values can be observed when looking at very low UPS1-doses and too few initial quantitations values may remain for meaningful comparisons. Of course, with an elevanted content of NAs the mechanism of NA-substitution will also contribute to masking (in part) the true variability.

In consequence pair-wise comparisons using one of the higher UPS1-concentrations group are expected to have a decent chance to rather specifically reveil a high number of UPS1 proteins.

Once can see that lower concentrations of UPS1 usually have worse CV (coefficient of variance) in the respective samples,

Testing All Individual UPS1 Proteins By Linear Regression

First, we construct a container for storing various measures and results which we will look at lateron.

## prepare object for storing all results
datUPS1 <- array(NA, dim=c(length(UPS1$ac),length(methNa),7), dimnames=list(UPS1$ac,c("PD","MQ","PL"),
  c("sco","nPep","medAbund", "logp","slope","startFr","cluNo")))

Now we’ll calculate the linear models, extract slope & pval for each UPS1 protein. The functions used also allow plotting the resulting regression results, but plotting each UPS1 protein would make very crowded figures. Instead, we’ll plot representative examples only after clustering the regression-results.

Linear Regression for each UPS1 : ProteomeDiscoverer

lmPD <- list(length=length(NamesUpsPD))
doPl <- FALSE
lmPD[1:length(NamesUpsPD)] <- lapply(NamesUpsPD[1:length(NamesUpsPD)], linModelSelect, dat=dataPD,
  expect=names(grp9), startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=doPl, silent=TRUE)
names(lmPD) <- NamesUpsPD
## We make a little summary of regression-results (ProteomeDiscoverer)
tmp <- cbind(log10(sapply(lmPD, function(x) x$coef[2,4])), sapply(lmPD, function(x) x$coef[2,1]), sapply(lmPD, function(x) x$startLev))
datUPS1[,1,c("logp","slope","startFr")] <- tmp[match(rownames(datUPS1), names(lmPD)), ]
datUPS1[,1,"medAbund"] <- apply(wrMisc::.scale01(dataPD$datImp)[match(UPS1$ac,rownames(dataPD$datImp)),],1,median,na.rm=TRUE)

Linear Regression for each UPS1 : MaxQuant

lmMQ <- list(length=length(NamesUpsMQ))
lmMQ[1:length(NamesUpsMQ)] <- lapply(NamesUpsMQ[1:length(NamesUpsMQ)], linModelSelect, dat=dataMQ,
  expect=names(grp9), startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=doPl, silent=TRUE)
names(lmMQ) <- NamesUpsMQ
## We make a little summary of regression-results (MaxQuant)
tmp <- cbind(log10(sapply(lmMQ, function(x) x$coef[2,4])), sapply(lmMQ, function(x) x$coef[2,1]), sapply(lmMQ, function(x) x$startLev))
datUPS1[,2,c("logp","slope","startFr")] <- tmp[match(rownames(datUPS1), names(lmMQ)), ]
datUPS1[,2,"medAbund"] <- apply(wrMisc::.scale01(dataMQ$datImp)[match(UPS1$ac,rownames(dataMQ$datImp)),],1,median,na.rm=TRUE)

Linear Regression for each UPS1 : Proline

lmPL <- list(length=length(NamesUpsPL))
lmPL[1:length(NamesUpsPL)] <- lapply(NamesUpsPL[1:length(NamesUpsPL)], linModelSelect, dat=dataPL,
  expect=names(grp9), startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=doPl, silent=TRUE)
names(lmPL) <- NamesUpsPL
tmp <- cbind(log10(sapply(lmPL, function(x) x$coef[2,4])), sapply(lmPL, function(x) x$coef[2,1]), sapply(lmPL, function(x) x$startLev))
datUPS1[,3,c("logp","slope","startFr")] <- tmp[match(rownames(datUPS1), names(lmPL)), ]
datUPS1[,3,"medAbund"] <- apply(wrMisc::.scale01(dataPL$datImp)[match(UPS1$ac,rownames(dataPL$datImp)),],1,median,na.rm=TRUE)

Frequency Of Starting Levels For Regression

To get a general view, let’s look where regressions typically have their best starting-site (ie how many low concentrations points are usually better omitted):

## at which concentration of UPS1 did the best regression start ?
stTab <- sapply(1:5, function(x) apply(datUPS1[,,"startFr"],2,function(y) sum(x==y)))
colnames(stTab) <- paste("lev",1:5,sep="_")
kable(stTab, caption = "Frequency of starting levels for regression")
Frequency of starting levels for regression
lev_1 lev_2 lev_3 lev_4 lev_5
PD 3 20 11 3 11
MQ 7 12 7 6 16
PL 7 12 11 5 13

Global Comparison Of Regression Models

Next, we’ll inspect the relation between regression-slopes and p-values (for H0: slope=0) :

layout(matrix(1:4,ncol=2))
subTi <- "fill according to median abundance (blue=low - green - red=high)"
xyRa <- apply(datUPS1[,,4:5], 3, range, na.rm=T)

plotMultRegrPar(datUPS1, 1, xlim=xyRa[,1], ylim=xyRa[,2],tit="ProteomeDiscoverer UPS1, p-value vs slope",subTit=subTi)    # adj wr 9jan23
plotMultRegrPar(datUPS1, 2, xlim=xyRa[,1], ylim=xyRa[,2],tit="MaxQuant UPS1, p-value vs slope",subTit=subTi)
plotMultRegrPar(datUPS1, 3, xlim=xyRa[,1], ylim=xyRa[,2],tit="Proline UPS1, p-value vs slope",subTit=subTi)

We can observe, that sope and (log)p-value of the resultant regressions do not necessarily correlate well. Thus, considering only one of these resultant values may not be sufficient.

Summarize Linear Regression Results

When judging results for indivual UPS1 proteins one may see that both the value of the slope as well as the p-value (for H0:slope=0) are important to consider. For example, there are some cases where the quantitations lign up well giving a good p-value but with slopes < 0.4. This is definitely not the type of dose-response characteristics we are looking for. In consequence, let’s construct a combined score for these components slope and p-value for easier consideration of both elements at once :

for(i in 1:(dim(datUPS1)[2])) datUPS1[,i,"sco"] <- -datUPS1[,i,"logp"] - (datUPS1[,i,"slope"] -1)^2    # cut at > 8

Next, let’s bring together all linear-model scores, the number of peptides and meadian protein abundance for each of UPS1 proteins in one object to facilite further steps.

datUPS1[,1,2] <- rowSums(dataPD$count[match(UPS1$ac,dataPD$annot[,1]),,"NoOfPeptides"], na.rm=TRUE)
datUPS1[,2,2] <- rowSums(dataMQ$count[match(UPS1$ac,dataMQ$annot[,1]),,1], na.rm=TRUE)
datUPS1[,3,2] <- rowSums(dataPL$count[match(UPS1$ac,dataPL$annot[,1]),,"NoOfPeptides"], na.rm=TRUE)

Now we can explore the regression score and its context to other parameters, below it’s done graphically.

layout(matrix(1:4, ncol=2))
par(mar=c(5.5, 2.2, 4, 0.4))
col1 <- RColorBrewer::brewer.pal(9,"YlOrRd")
imageW(datUPS1[,,1], col=col1, tit="Linear regression score", xLab="",yLab="",transp=FALSE)
mtext("red for bad score", cex=0.75)

imageW(log(datUPS1[,,2]), tit="Number of peptides", xLab="",yLab="", col=col1, transp=FALSE)
mtext("dark red for high number of peptides", cex=0.75)

## ratio : regression score vs no of peptides
imageW(datUPS1[,,1]/log(datUPS1[,,2]), col=rev(col1), tit="Regression score / Number of peptides", xLab="",yLab="", transp=FALSE)
mtext("dark red for high (good) lmScore/peptide ratio)", cex=0.75)

## score vs abundance
imageW(datUPS1[,,1]/datUPS1[,,3], col=rev(col1), tit="Regression score / median Abundance", xLab="",yLab="", transp=FALSE)
mtext("dark red for high (good) lmScore/abundance ratio)", cex=0.75)

From the heatmap-like plots we can see that some proteins are rather consistently quantified by any of the methods. Some of the varaibility may be explained by the number of peptides (in case of MaxQuant ‘razor-peptides’ were used), see plot of ‘regression score / number of peptides’. In contrast, UPS-protein median abundance does not correlate or explain this phenomenon (see last plot ‘regression score / median abundance’). So we cannot support the hypothesis that highly abundant proteins get quantified better.

Grouping of UPS1 Proteins to Display Representative Proteins

Using the linear regression score defined above we can rank UPS1 proteins and display representative ones in order to avoid crowded and repetitive figures.

Now, we can try to group the regression scores into groups and easily display representative examples for each group. Here, we (pre)define that we want to obtain 5 groups (like ratings from 1 -5 starts), a k-Means clustering approach was chosen.

## number of groups for clustering
nGr <- 5
chFin <- is.finite(datUPS1[,,"sco"])
if(any(!chFin)) datUPS1[,,"sco"][which(!chFin)] <- -1      # just in case..


## clustering using kMeans
kMx <- stats::kmeans(standardW(datUPS1[,,"sco"], byColumn=FALSE), nGr)$cluster
datUPS1[,,"cluNo"] <- matrix(rep(kMx, dim(datUPS1)[2]), nrow=length(kMx))

geoM <- apply(datUPS1[,,"sco"], 1, function(x) prod(x)^(1/length(x)))        # geometric mean across analysis soft
geoM2 <- lrbind(by(cbind(geoM,datUPS1[,,"sco"], clu=kMx), kMx, function(x) x[order(x[,1],decreasing=TRUE),]))  # organize by clusters
tmp <- tapply(geoM2[,"geoM"], geoM2[,"clu"], median)
geoM2[,"clu"] <- rep(rank(tmp, ties.method="first"), table(kMx))
geoM2 <- geoM2[order(geoM2[,"clu"],geoM2[,"geoM"],decreasing=TRUE),]         # order as decreasing median.per.cluster
geoM2[,"clu"] <- rep(1:max(kMx), table(geoM2[,"clu"])[rank(unique(geoM2[,"clu"]))])    # replace cluster-names to increasing

try(profileAsClu(geoM2[,2:4], geoM2[,"clu"], tit="Clustered Regression Results for UPS1 Proteins", ylab="Linear regression score"))

datUPS1 <- datUPS1[match(rownames(geoM2), rownames(datUPS1)),,]               # bring in new order
datUPS1[,,"cluNo"] <- geoM2[,"clu"]                                          # update cluster-names

### prepare annotation of UPS proteins
annUPS1 <- dataPL$annot[match(rownames(datUPS1), dataPL$annot[,1]), c(1,3)]
annUPS1[,2] <- substr(sub("_UPS","",sub("generic_ups\\|[[:alnum:]]+-{0,1}[[:digit:]]\\|","",annUPS1[,2])),1,42)
## index of representative for each cluster  (median position inside cluster)
UPSrep <- tapply(geoM2[,"geoM"], geoM2[,"clu"], function(x) ceiling(length(x)/2)) + c(0, cumsum(table(geoM2[,"clu"]))[-nGr])

Previously we organized all UPS1 proteins according to their regression characteristics into 5 clusters and each cluster was ordered for descending scores. Now we can use the median position within each cluster as representative example for this cluster.

Representative UPS1-protein of the Best Group (the ‘+++++’)

gr <- 1
useLi <- which(datUPS1[,1,"cluNo"]==gr)
colNa <- c("Protein",paste(colnames(datUPS1), rep(c("slope","logp"), each=ncol(datUPS1)), sep=" "))
try(kable(cbind(annUPS1[useLi,2], signif(datUPS1[useLi,,"slope"],3), signif(datUPS1[useLi,,"logp"],3)),
  caption=paste("Regression details for cluster of the",length(useLi),"best UPS1 proteins "), col.names=colNa, align="l"),silent=TRUE)
Regression details for cluster of the 18 best UPS1 proteins
Protein PD slope MQ slope PL slope PD logp MQ logp PL logp
P00915 Carbonic anhydrase 1 (Chain 2-261) 1.07 1.37 1.02 -23.7 -17.4 -23.8
P01375 Tumor necrosis factor, soluble form (Chain 1.16 0.924 1.13 -23.3 -15.7 -20.6
P41159 Leptin (Chain 22-167) 1.23 1.09 1.01 -21.6 -18.9 -17.7
P10636-8 Microtubule-associated protein tau (Isofor 1.08 1.4 0.938 -18.2 -17.8 -22.1
P00167 Cytochrome b5 (Chain 1-134, N-terminal His 1.06 1.17 0.973 -22.5 -17.6 -17.3
P55957 BH3-interacting domain death agonist (Chai 1.08 1.04 1.03 -19.8 -17.5 -18.6
P05413 Fatty acid-binding protein, heart (Chain 2 1.07 1.2 0.864 -18.3 -17.5 -19.1
P06732 Creatine kinase M-type (Chain 1-381) 1.03 1.41 0.89 -18.2 -17.9 -18.9
P00918 Carbonic anhydrase 2 (Chain 2-260) 1.17 1.28 0.925 -18.2 -16.5 -20
P08758 Annexin A5 (Chain 2-320) 1.1 1.15 0.925 -19.9 -17 -16.7
P00709 Alpha-lactalbumin (Chain 20-142) 0.996 1.18 0.993 -19.7 -16.4 -16.7
P06396 Gelsolin (Chain 28-782) 1.13 1.4 0.399 -22.1 -18.8 -13.2
P01344 Insulin-like growth factor II (Chain 25-91 1 0.844 0.903 -17.9 -17 -16.5
P02768 Serum albumin (Chain 26-609) 1.01 1.45 0.808 -16.5 -15.3 -19.7
P02787 Serotransferrin (Chain 20-698) 1.1 1.45 0.814 -23 -17.2 -12.5
P01008 Antithrombin-III (Chain 33-464) 0.96 1.24 0.864 -17.2 -16.8 -16.5
P02788 Lactotransferrin (Chain 20-710) 1.31 1.46 0.689 -16.3 -17.7 -16.1
P02144 Myoglobin (Chain 2-154) 1.18 1.2 0.575 -17.6 -18.6 -13.9
## Plotting the best regressions, this required package wrGraph version 1.2.5 (or higher)
if(packageVersion("wrGraph")  >= "1.2.5"){
  layout(matrix(1:4, ncol=2))
  tit <- paste0(methNa,", ",annUPS1[UPSrep[gr],1])
  try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataPD, tit=tit[1], expect=names(grp9), startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE)
  try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataMQ, tit=tit[2], expect=names(grp9), startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE)
  try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataPL, tit=tit[3], expect=names(grp9), startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE) }

Representative UPS1-protein of the 2nd Best Group (the ‘++++’)

gr <- 2
useLi <- which(datUPS1[,1,"cluNo"]==gr)
try(kable(cbind(annUPS1[useLi,2], signif(datUPS1[useLi,,"slope"],3), signif(datUPS1[useLi,,"logp"],3)),
  caption=paste("Regression details for cluster of the",length(useLi),"2nd best UPS1 proteins "), col.names=colNa, align="l"),silent=TRUE)
Regression details for cluster of the 9 2nd best UPS1 proteins
Protein PD slope MQ slope PL slope PD logp MQ logp PL logp
P01579 Interferon Gamma (Chain 23-166) 1.07 1 0.831 -17.9 -12.9 -19.2
O00762 Ubiquitin-conjugating enzyme E2 C (Chain 1 1.08 1.15 0.918 -18.3 -12.4 -18.7
P01127 Platelet-derived growth factor B chain (Ch 1.1 1.43 1.05 -16.6 -10.9 -22.7
P61626 Lysozyme C (Chain 19-148) 1.18 0.654 1.16 -17.1 -11.8 -18.2
P62937 Peptidyl-prolyl cis-trans isomerase A (Cha 0.98 1.21 0.763 -18.2 -11.9 -15.6
Q06830 Peroxiredoxin 1 (Chain 2-199) 0.782 0.879 0.698 -14.9 -12.5 -16.6
P51965 Ubiquitin-conjugating enzyme E2 E1 (Chain 1 1.11 0.465 -18.4 -11.4 -14
P61769 Beta-2-microglobulin (Chain 21-119) 1.16 0.61 1.05 -17.3 -8.86 -17.3
P10599 Thioredoxin (Chain 2-105, N-terminal His 0.939 0.332 0.989 -15.4 -5.33 -21.1
if(packageVersion("wrGraph")  >= "1.2.5"){
  layout(matrix(1:4, ncol=2))
  tit <- paste0(methNa,", ",annUPS1[UPSrep[gr],1])
  try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataPD, tit=tit[1], expect=names(grp9), startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE)
  try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataMQ, tit=tit[2], expect=names(grp9), startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE)
  try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataPL, tit=tit[3], expect=names(grp9), startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE) }

Representative UPS1-protein of the 3rd Group (the ‘+++’)

gr <- 3
useLi <- which(datUPS1[,1,"cluNo"]==gr)
try(kable(cbind(annUPS1[useLi,2], signif(datUPS1[useLi,,"slope"],3), signif(datUPS1[useLi,,"logp"],3)),
  caption="Regression details for 3rd cluster UPS1 proteins ", col.names=colNa, align="l"),silent=TRUE)
Regression details for 3rd cluster UPS1 proteins
Protein PD slope MQ slope PL slope PD logp MQ logp PL logp
P04040 Catalase (Chain 2-527) 0.993 1.34 0.75 -13.5 -17.2 -18.2
P16083 Ribosyldihydronicotinamide dehydrogenase [ 1.23 1.73 0.883 -13.6 -15.8 -16.1
P12081 Histidyl-tRNA synthetase, cytoplasmic (Cha 0.883 1.23 0.864 -16.3 -14.7 -13.8
O76070 Gamma-synuclein (Chain 1-127) 1.06 1.03 0.698 -16.6 -15.6 -12.1
P01133 Pro-Epidermal growth factor (EGF) (Chain 9 0.983 1.01 0.89 -17 -13.9 -13.1
P68871 Hemoglobin subunit beta (Chain 2-147) 1.06 1.5 0.804 -13.4 -14.2 -14.9
P01112 GTPase HRas (Chain 1-189) 0.807 0.703 0.835 -12.8 -11.9 -15.6
P62988 Ubiquitin (Chain 1-76, N-terminal His tag) 0.866 1.01 0.0612 -13.1 -11.7 -15.2
P15559 NAD(P)H dehydrogenase [quinone] 1 (Chain 2 0.0754 0.998 0.113 -11.5 -13.8 -13
P99999 Cytochrome c (Chain 2-105) 0.523 1.27 0.438 -12 -13 -12.1
P08263 Glutathione S-transferase A1 (Chain 2-222) 0.405 1.1 0.21 -10.2 -17.2 -10.6
if(packageVersion("wrGraph")  >= "1.2.5"){
  layout(matrix(1:4, ncol=2))
  tit <- paste0(methNa,", ",annUPS1[UPSrep[gr],1])
  try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataPD, tit=tit[1], expect=names(grp9), startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE)
  try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataMQ, tit=tit[2], expect=names(grp9), startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE)
  try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataPL, tit=tit[3], expect=names(grp9), startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE) }

Representative UPS1-protein of the 4th Group (the ‘++’)

gr <- 4
useLi <- which(datUPS1[,1,"cluNo"]==gr)
try(kable(cbind(annUPS1[useLi,2], signif(datUPS1[useLi,,"slope"],3), signif(datUPS1[useLi,,"logp"],3)),
  caption="Regression details for 3rd cluster UPS1 proteins ", col.names=colNa, align="l"),silent=TRUE)
Regression details for 3rd cluster UPS1 proteins
Protein PD slope MQ slope PL slope PD logp MQ logp PL logp
P02753 Retinol-binding protein 4 (Chain 19-201) 0.33 0.54 0.849 -10.4 -9.77 -15.9
P09211 Glutathione S-transferase P (Chain 2-210) 0.716 0.774 0.63 -10.5 -11.1 -12.3
P10145 Interleukin-8, IL-8 (Chain 28-99) 0.882 1.04 0.806 -10.7 -8.25 -15.5
P63165 Small ubiquitin-related modifier 1 (Chain 1.3 0.84 0.704 -9.1 -11.3 -13.5
P63279 SUMO-conjugating enzyme UBC9 (Chain 1-158) 0.857 1.04 0.866 -12.8 -8.36 -11.7
Q15843 NEDD8 (Chain 1-81) 1.17 0.795 1 -12.7 -6.78 -14.2
P02741 C-reactive protein (Chain 19-224) 0.266 0.983 0.872 -12.1 -7.03 -11.2
P00441 Superoxide dismutase [Cu-Zn] (Chain 2-154) 0.759 0.471 0.505 -11.5 -7.44 -10.3
P01031 Complement C5 (C5a anaphylatoxin) (Chain 6 0.465 0.413 1.16 -8.05 -6.17 -16

if(packageVersion("wrGraph")  >= "1.2.5"){
  layout(matrix(1:4, ncol=2))
  tit <- paste0(methNa,", ",annUPS1[UPSrep[gr],1])
  try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataPD, tit=tit[1], expect=names(grp9), startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE)
  try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataMQ, tit=tit[2], expect=names(grp9), startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE)
  try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataPL, tit=tit[3], expect=names(grp9), startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE) }

Representative UPS1-protein of the 5th (And Last) Group (the ‘+’)

gr <- 5
useLi <- which(datUPS1[,1,"cluNo"]==gr)
try(kable(cbind(annUPS1[useLi,2], signif(datUPS1[useLi,,"slope"],3), signif(datUPS1[useLi,,"logp"],3)),
  caption="Regression details for 5th cluster UPS1 proteins ", col.names=colNa, align="l"),silent=TRUE)
Regression details for 5th cluster UPS1 proteins
PL slope PD logp MQ logp PL logp
PD Hemoglobin subunit alpha (Chain 2-142) 0.508 -9.15
MQ Hemoglobin subunit alpha (Chain 2-142) 0.304 -1.54
PL Hemoglobin subunit alpha (Chain 2-142) 1.01 -8.74
if(packageVersion("wrGraph")  >= "1.2.5"){
  layout(matrix(1:4, ncol=2))
  tit <- paste0(methNa,", ",annUPS1[UPSrep[gr],1])
  try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataPD, tit=tit[1], expect=names(grp9), startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE)
  try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataMQ, tit=tit[2], expect=names(grp9), startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE)
  try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataPL, tit=tit[3], expect=names(grp9), startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE) }

Additional Comments

The choice of the ‘best suited’ approach to quantify and compare proteomics data is not trivial at all. Particular attention has to be given to the choice of the numerous ‘small’ parameters which may have a very strong impact on the final outcome, as it has been experienced when preparing the data for this vignette or at other places (eg Chawade et al 2015). Thus, knowing and understanding well the software/tools one has chosen is of prime importance ! Of course, this also concerns the protein-identifcation part/software.

The total number of proteins identified varies considerably between methods, this information may be very important to the user in real-world settings but is only taken in consideration in part in the comparisons presented.

ROC curves allow us to gain more insight on the impact of cutoff values (alpha) for statistical testing. Frequently the ideal threshold maximizing sensitivity and specificity lies quite distant to the common 5-percent threshold. This indicates that many times the common 5-percent threshold may not be the ‘optimal’ compromise for calling differential abundant proteins. However, the optimal point varies very much between data-sets and in a real world setting with unknown samples this type of analysis is not possible.

As mentioned before, the dataset used in this vignette is not very recent, much better performing mass-spectrometers have been introduced since then. The main aim of this vignette consists in showing how to use wrProteo with a smaller example (allowing to limit file-size of this package). Thus, for rather scientific conclusions the user is encouraged to run the same procedure using data run on more recent mass-spectrometers.

Acknowledgements

The author wants to acknowledge the support by the IGBMC (CNRS UMR 7104, Inserm U 1258, UdS), CNRS, Université de Strasbourg and Inserm and of course all collegues from the IGBMC proteomics platform. The author wishes to thank the CRAN -staff for all their help with new entries and their efforts in maintaining this repository of R-packages. Furthermore, many very fruitful discussions with colleages on national and international level have helped to formulate ideas and improve the tools presented here.

Thank you for you interest. This package is constantly evolving, new featues/functions may get added to the next version of this package.

Session-Info

For completeness :

#> R version 4.3.2 (2023-10-31 ucrt)
#> Platform: x86_64-w64-mingw32/x64 (64-bit)
#> Running under: Windows 10 x64 (build 19045)
#> 
#> Matrix products: default
#> 
#> 
#> locale:
#> [1] LC_COLLATE=C                   LC_CTYPE=French_France.utf8   
#> [3] LC_MONETARY=French_France.utf8 LC_NUMERIC=C                  
#> [5] LC_TIME=French_France.utf8    
#> 
#> time zone: Europe/Paris
#> tzcode source: internal
#> 
#> attached base packages:
#> [1] stats     graphics  grDevices utils     datasets  methods   base     
#> 
#> other attached packages:
#> [1] rmarkdown_2.25    knitr_1.45        wrGraph_1.3.7.1   wrProteo_1.11.0.1
#> [5] wrMisc_1.14.1    
#> 
#> loaded via a namespace (and not attached):
#>  [1] sass_0.4.7         utf8_1.2.4         generics_0.1.3     stringi_1.8.1     
#>  [5] digest_0.6.33      magrittr_2.0.3     evaluate_0.23      grid_4.3.2        
#>  [9] RColorBrewer_1.1-3 fastmap_1.1.1      cellranger_1.1.0   R.oo_1.25.0       
#> [13] plyr_1.8.9         jsonlite_1.8.7     R.utils_2.12.2     limma_3.58.1      
#> [17] fansi_1.0.5        scales_1.2.1       jquerylib_0.1.4    cli_3.6.1         
#> [21] rlang_1.1.2        R.methodsS3_1.8.2  munsell_0.5.0      splines_4.3.2     
#> [25] cachem_1.0.8       yaml_2.3.7         tools_4.3.2        reshape2_1.4.4    
#> [29] dplyr_1.1.3        colorspace_2.1-0   ggplot2_3.4.4      vctrs_0.6.4       
#> [33] fdrtool_1.2.17     R6_2.5.1           lifecycle_1.0.4    stringr_1.5.1     
#> [37] pkgconfig_2.0.3    pillar_1.9.0       bslib_0.5.1        gtable_0.3.4      
#> [41] glue_1.6.2         Rcpp_1.0.11        statmod_1.5.0      xfun_0.41         
#> [45] tibble_3.2.1       tidyselect_1.2.0   highr_0.10         qvalue_2.34.0     
#> [49] htmltools_0.5.7    sm_2.2-5.7.1       compiler_4.3.2     readxl_1.4.3