This vignette complements the more basic vignette ‘Getting started with wrProteo’ of 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")
::install("limma")
BiocManager
## 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 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.7.0.1'
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 data used in this vignette were 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.
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 it directly from github/bigbio.
## Read meta-data from github.com/bigbio/proteomics-metadata-standard/
<- readSdrf("PXD001819")
pxd001819meta
## The concentration of the UPS1 spike-in proteins in the samples
if(length(pxd001819meta) >0) {
<- sort(unique(as.numeric(trimRedundText(pxd001819meta$characteristics.spiked.compound.)))) # trim to get to 'essential' info
UPSconc else {
} <- c(50, 125, 250, 500, 2500, 5000, 12500, 25000, 50000) # in case access to github failed
UPSconc }
The import function used furtheron in this vignette can directly download this metadata if the PXD-accession-number is provided.
## A few elements and functions we'll need lateron
<- c("ProteomeDiscoverer","MaxQuant","Proline")
methNa names(methNa) <- c("PD","MQ","PL")
## The accession numbers for the UPS1 proteins
<- data.frame(ac=c("P00915", "P00918", "P01031", "P69905", "P68871", "P41159", "P02768", "P62988",
UPS1 "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
<- function(x, annCol="SpecType", replBy=cbind(old=c("mainSpe","species2"), new=c("Yeast","UPS1")), silent=TRUE) {
replSpecType ## rename $annot[,"SpecType"] to more specific names
<- annCol[1] %in% colnames(x$annot)
chCol if(chCol) { chCol <- which(colnames(x$annot)==annCol[1])
<- replBy[,1] %in% unique(x$annot[,chCol]) # check items to replace if present
chIt 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 }
<- function(mat, ref, refColumn=3:4, matCluNa="cluNo", lev=NULL, ylab=NULL, tit=NULL) {
plotConcHist ## plot histogram like counts of UPS1 concentrations
if(is.null(tit)) tit <- "Frequency of UPS1 Concentrations Appearing in Cluster"
<- unique(mat[,matCluNa])
gr <- ref[,refColumn]
ref if(length(lev) <2) lev <- sort(unique(as.numeric(as.matrix(ref))))
if(length(ylab) !=1) ylab <- "Frequency"
<- table(factor( as.numeric(ref[which(rownames(ref) %in% rownames(mat)),]), levels=lev))
tbl ::barplot(tbl, las=1, beside=TRUE, main=paste(tit,gr), col=grDevices::gray(0.8), ylab=ylab)
graphics
}
<- 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) {
plotMultRegrPar ## 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
<- "plotMultRegrPar"
fxNa #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'")
<- useColumn %in% dimnames(dat)[[3]]
chCol if(any(!chCol)) stop("argument 'useColumn' does not fit to 3rd dim dimnames of 'dat'")
<- colorAccording2(dat[,methInd,useColumn[3]], gradTy="rainbow", revCol=TRUE, nEndOmit=14)
useCol ::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)
graphicsif(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)}
<- graphics::hist(dat[,methInd,useColumn[3]], plot=FALSE)
hi1 ::legendHist(sort(dat[,methInd,useColumn[3]]), colRamp=useCol[order(dat[,methInd,useColumn[3]])][cumsum(hi1$counts)],
wrGraphcex=0.5, location="bottomleft", legTit="median raw abundance") #
}
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 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).
<- system.file("extdata", package="wrProteo")
path1 <- "proteinGroups.txt.gz"
fiNaMQ
## We need to define the setup of species
<- list(conta="CON_|LYSC_CHICK", mainSpecies="OS=Saccharomyces cerevisiae", spike=UPS1$ac)
specPrefMQ
<- readMaxQuantFile(path1, file=fiNaMQ, specPref=specPrefMQ, refLi="mainSpe", sdrf="PXD001819", suplAnnotFile=TRUE)
dataMQ #> -> 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 : Normalize using subset of 1047
#> -> readMaxQuantFile -> readSampleMetaData : summaryD exists, but unable to find file-names
The data were imported and median-normalized, the protein annotation was parsed to automatically extract IDs, protein-names and species information. 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:8]) # the first 8 cols
#> 12500amol_1 12500amol_2 12500amol_3 125amol_1
#> Min. :17.54 Min. :15.66 Min. :14.93 Min. :15.18
#> 1st Qu.:22.51 1st Qu.:22.49 1st Qu.:22.50 1st Qu.:22.39
#> Median :23.46 Median :23.46 Median :23.46 Median :23.43
#> Mean :23.69 Mean :23.65 Mean :23.67 Mean :23.60
#> 3rd Qu.:24.81 3rd Qu.:24.76 3rd Qu.:24.77 3rd Qu.:24.82
#> Max. :30.29 Max. :30.27 Max. :30.32 Max. :30.26
#> NA's :98 NA's :100 NA's :104 NA's :114
#> 125amol_2 125amol_3 25000amol_1 25000amol_2
#> Min. :14.85 Min. :14.93 Min. :15.82 Min. :18.37
#> 1st Qu.:22.36 1st Qu.:22.40 1st Qu.:22.53 1st Qu.:22.53
#> Median :23.42 Median :23.44 Median :23.53 Median :23.53
#> Mean :23.59 Mean :23.62 Mean :23.74 Mean :23.74
#> 3rd Qu.:24.81 3rd Qu.:24.79 3rd Qu.:24.94 3rd Qu.:24.90
#> Max. :30.26 Max. :30.29 Max. :30.27 Max. :30.20
#> NA's :106 NA's :114 NA's :109 NA's :115
Now we can summarize the presence of UPS1 proteins after treatment by MaxQuant : In sum, 48 UPS1 proteins were found, 0 are missing.
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’ (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).
<- system.file("extdata", package="wrProteo")
path1 <- "pxd001819_PD24_Proteins.txt.gz"
fiNaPd ## Next, we define the setup of species
<- list(conta="Bos tauris|Gallus", mainSpecies="OS=Saccharomyces cerevisiae", spike=UPS1$ac)
specPrefPD
<- readProtDiscovFile(file=fiNaPd, path=path1, refLi="mainSpe", specPref=specPrefPD, sdrf="PXD001819")
dataPD #> -> readProtDiscovFile : Setting 'annotCol' to export of 'R-friendly' colnames
#> -> readProtDiscovFile : Note: 10 (out of 1297) lines with unrecognized species
#> -> readProtDiscovFile : Count by 'specPref' : Gallus gallus: 1 ; Homo sapiens: 47 ; Saccharomyces cerevisiae: 1239 ;
#> -> readProtDiscovFile : Removing 1 lines due to duplicated Accessions (typically due to contaminants)
#> -> readProtDiscovFile : Normalize using (custom) subset of 1239 lines
#> -> readProtDiscovFile -> readSampleMetaData : Sucessfully adjusted order of sdrf to content of pxd001819_PD_InputFiles.txt.gz
The data were imported 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 will be integrated to object produced by the import-function.
Thus, much care should be taken on the order when preparing the vector sampleNames with the names to use instead.
## The number of lines and colums
dim(dataPD$quant)
#> [1] 1296 27
## A quick summary of some columns of quantitation data
summary(dataPD$quant[,1:8]) # the first 8 cols
#> 50amol_R1 50amol_R2 50amol_R3 125amol_R1
#> Min. :13.62 Min. :11.56 Min. : 9.585 Min. :10.90
#> 1st Qu.:18.14 1st Qu.:18.18 1st Qu.:18.234 1st Qu.:18.22
#> Median :19.36 Median :19.37 Median :19.380 Median :19.37
#> Mean :19.52 Mean :19.53 Mean :19.539 Mean :19.52
#> 3rd Qu.:20.84 3rd Qu.:20.89 3rd Qu.:20.899 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
#> 125amol_R2 125amol_R3 250amol_R1 250amol_R2
#> Min. :10.48 Min. :11.16 Min. :10.09 Min. :10.23
#> 1st Qu.:18.20 1st Qu.:18.20 1st Qu.:18.16 1st Qu.:18.17
#> Median :19.40 Median :19.40 Median :19.40 Median :19.37
#> Mean :19.51 Mean :19.53 Mean :19.50 Mean :19.47
#> 3rd Qu.:20.82 3rd Qu.:20.83 3rd Qu.:20.77 3rd Qu.:20.77
#> Max. :26.39 Max. :26.46 Max. :26.46 Max. :26.43
#> NA's :99 NA's :86 NA's :87 NA's :77
## There are proteins where the 'OS='-tag won't be visible as Species (orig Fasta-header and Protein-name not accessible) :
which(is.na(dataPD$annot[,"Species"]) & dataPD$annot[,"SpecType"]=="species2") # is NA as Species
#> P02768
#> 25
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 is open-source software provided by the Profi-consortium (see also proline-core on github), published by Bouyssié 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.
<- system.file("extdata", package="wrProteo")
path1 <- "pxd001819_PL.xlsx"
fiNaPl
<- c(conta="_conta", mainSpecies="OS=Saccharomyces cerevisiae", spike="_ups")
specPrefPL <- readProlineFile(file.path(path1,fiNaPl), specPref=specPrefPL, normalizeMeth="median", refLi="mainSpe", sdrf="PXD001819", silent=TRUE)
dataPL #> -> readProlineFile -> readSampleMetaData : summaryD exists, but unable to find file-names
In addition, we need to correct the quantification column-heads (like ‘Levure2ug+ UPS1-100amol-1’) and bring them to a simpler version :
head(colnames(dataPL$raw), 8)
#> [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" "Levure2ug+ UPS1-500amol-2"
<- cleanListCoNames(dataPL, rem=c("abundance_","Levure2ug+ UPS1"))
dataPL ## let's check the result
head(colnames(dataPL$raw),8)
#> [1] "_100amol-1" "_100amol-2" "_100amol-3" "_250amol-1" "_250amol-2"
#> [6] "_250amol-3" "_500amol-1" "_500amol-2"
## 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
#> _100amol-1 _100amol-2 _100amol-3 _250amol-1
#> 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
#> _250amol-2 _250amol-3 _500amol-1 _500amol-2
#> 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
Now we can summarize the presence of UPS1 proteins after treatment by Proline : In sum, 48 UPS1 proteins were found, 0 are missing.
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
<- colnames(dataPD$quant)
sampNa
## it is more convenient to re-order columns this way in each project
<- corColumnOrder(dataPD, sampNames=sampNa) # already in good order
dataPD #> -> corColumnOrder : Quant/counting data already in good order ..
<- corColumnOrder(dataMQ, sampNames=sampNa, newNames=sub("amol_", "amol_R", colnames(dataMQ$quant)))
dataMQ <- corColumnOrder(dataPL, sampNames=sampNa)
dataPL #> -> corColumnOrder : Colnames of 'dat$quant' differ from 'sampNames', trying to adjust ..
#> -> corColumnOrder : Failed : Unable to match 27 suggested sampNames ( '50amol_R1', '50amol_R2', '50amol_R3', '125amol_R1', '125amol_R2', '125amol_R3', '250amol_R1', '250amol_R2', '250amol_R3', '500amol_R1', '500amol_R2', '500amol_R3', '2500amol_R1', '2500amol_R2', '2500amol_R3', '5000amol_R1', '5000amol_R2', '5000amol_R3', '12500amol_R1', '12500amol_R2', '12500amol_R3', '25000amol_R1', '25000amol_R2', '25000amol_R3', '50000amol_R1', '50000amol_R2' and '50000amol_R3' )
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"]
<- replSpecType(dataPD, replBy=cbind(old=c("mainSpe","species2"), new=c("Yeast","UPS1")))
dataPD #> useLi 1 2 3 4 5 6
#> useLi 24 25 36 37 45 70
<- replSpecType(dataMQ, replBy=cbind(old=c("mainSpe","species2"), new=c("Yeast","UPS1")))
dataMQ #> useLi 1 12 13 14 15 16
#> useLi 4 11 21 27 39 47
<- replSpecType(dataPL, replBy=cbind(old=c("mainSpe","species2"), new=c("Yeast","UPS1")))
dataPL #> useLi 1 2 3 4 5 6
#> useLi 20 22 48 53 54 71
## Need to address missing ProteinNames (UPS1) due to missing tags in Fasta
<- replMissingProtNames(dataPD)
dataPD #> -> replreplMissingProtNames : ..trying to replace 1296 'EntryName'
<- replMissingProtNames(dataMQ)
dataMQ #> -> replreplMissingProtNames : ..trying to replace 5 'EntryName'
<- replMissingProtNames(dataPL)
dataPL
## add some grouping/sample annotation to PL
$sampleSetup$groups <- dataPD$sampleSetup$groups dataPL
## extract names of quantified UPS1-proteins
<- dataPD$annot[which(dataPD$annot[,"SpecType"]=="UPS1"), "Accession"]
NamesUpsPD <- dataMQ$annot[which(dataMQ$annot[,"SpecType"]=="UPS1"), "Accession"]
NamesUpsMQ <- dataPL$annot[which(dataPL$annot[,"SpecType"]=="UPS1"), "Accession"] NamesUpsPL
<- mergeVectors(PD=table(dataPD$annot[,"SpecType"]), MQ=table(dataMQ$annot[,"SpecType"]), PL=table(dataPL$annot[,"SpecType"]))
tabS <- mergeVectors(PD=table(dataPD$annot[,"Species"]), MQ=table(dataMQ$annot[,"Species"]), PL=table(dataPL$annot[,"Species"]))
tabT which(is.na(tabT))] <- 0
tabT[kable(cbind(tabS[,2:1], tabT), caption="Number of proteins identified, by custom tags, species and software")
Yeast | UPS1 | Gallus gallus | Homo sapiens | Mus musculus | Saccharomyces cerevisiae | Sus scrofa | |
---|---|---|---|---|---|---|---|
PD | 1239 | 48 | 1 | 47 | 0 | 1239 | 0 |
MQ | 1047 | 48 | 1 | 49 | 1 | 1047 | 1 |
PL | 1137 | 48 | 0 | 48 | 0 | 1137 | 1 |
The initial fasta file also contained the yeast strain number, this has been stripped off when using default parameters.
Let’s extract the information of grouping of samples/replicates
<- dataMQ$sampleSetup$groups <- dataPD$sampleSetup$groups
grp9 head(grp9)
#> 50 50 50 125 125 125
#> 1 1 1 2 2 2
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(1,7,19,22,23)], groups=dataMQ$sampleSetup$groups))
source.name | characteristics.spiked.compound. | comment.modification.parameters..2 | comment.file.uri. | comment.data.file. | groups |
---|---|---|---|---|---|
Sample 1 | 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 | UPS1_12500amol_R1.raw | 1 |
Sample 1 | 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 | UPS1_12500amol_R2.raw | 1 |
Sample 1 | 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 | UPS1_12500amol_R3.raw | 1 |
Sample 2 | 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 | UPS1_125amol_R1.raw | 2 |
Sample 2 | 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 | UPS1_125amol_R2.raw | 2 |
Sample 2 | 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 | UPS1_125amol_R3.raw | 2 |
Sample 3 | 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 | UPS1_25000amol_R1.raw | 3 |
Sample 3 | 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 | UPS1_25000amol_R2.raw | 3 |
Sample 3 | 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 | UPS1_25000amol_R3.raw | 3 |
Sample 4 | 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 | UPS1_2500amol_R1.raw | 4 |
Sample 4 | 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 | UPS1_2500amol_R2.raw | 4 |
Sample 4 | 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 | UPS1_2500amol_R3.raw | 4 |
Sample 5 | 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 | UPS1_250amol_R1.raw | 5 |
Sample 5 | 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 | UPS1_250amol_R2.raw | 5 |
Sample 5 | 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 | UPS1_250amol_R3.raw | 5 |
Sample 6 | 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 | UPS1_50000amol_R1.raw | 6 |
Sample 6 | 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 | UPS1_50000amol_R2.raw | 6 |
Sample 6 | 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 | UPS1_50000amol_R3.raw | 6 |
Sample 7 | 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 | UPS1_5000amol_R1.raw | 7 |
Sample 7 | 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 | UPS1_5000amol_R2.raw | 7 |
Sample 7 | 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 | UPS1_5000amol_R3.raw | 7 |
Sample 8 | 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 | UPS1_500amol_R1.raw | 8 |
Sample 8 | 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 | UPS1_500amol_R2.raw | 8 |
Sample 8 | 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 | UPS1_500amol_R3.raw | 8 |
Sample 9 | 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 | UPS1_50amol_R1.raw | 9 |
Sample 9 | 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 | UPS1_50amol_R2.raw | 9 |
Sample 9 | 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 | UPS1_50amol_R3.raw | 9 |
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 ‘readProtDiscovFile()’.
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 =976, '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-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 ?
<- rbind(PD=sumNAperGroup(dataPD$raw, grp9), MQ=sumNAperGroup(dataMQ$raw, grp9), PL=sumNAperGroup(dataPL$raw, grp9) )
tabSumNA colnames(tabSumNA) <- paste(unique(names(dataMQ$sampleSetup$groups)), "amol")
kable(tabSumNA, caption="Number of NAs per group of samples", align="r")
50 amol | 125 amol | 250 amol | 500 amol | 2500 amol | 5000 amol | 12500 amol | 25000 amol | 50000 amol | |
---|---|---|---|---|---|---|---|---|---|
PD | 272 | 273 | 257 | 234 | 205 | 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.
<- testRobustToNAimputation(dataPD, imputMethod="informed") # ProteomeDiscoverer
testPD #> -> testRobustToNAimputation -> matrixNAneighbourImpute -> stableMode : Method='density', length of x =976, 'bandw' has been set to 44
#> -> testRobustToNAimputation -> matrixNAneighbourImpute : n.woNA= 32920 , n.NA = 2072
#> impute based on 'informed' using mode= 17.34 and sd= 0.5
#> note mean for impuation is below 0.05 quantile !!
#> -> testRobustToNAimputation -> combineMultFilterNAimput : at presenceFilt: 1251 1249 1235 1245 1253 1251 1247 1252 1248 1247 1257 1245 1234 1259 1259 1248 1252 1252 1248 1246 1257 1261 1247 1238 1264 1263 1235 1262 1251 1253 1255 1254 1255 1257 1255 1259 out of 1296
#> -> testRobustToNAimputation -> combineMultFilterNAimput : at abundanceFilt: 1206 1207 1196 1200 1206 1203 1229 1232 1227 1226 1241 1229 1215 1237 1238 1231 1236 1234 1229 1228 1236 1248 1226 1217 1243 1236 1208 1236 1236 1238 1241 1238 1240 1239 1239 1240
#> -> testRobustToNAimputation -> combineMultFilterNAimput : at NA> mean: 1167, 1171, 1172, 1162, 1174, 1179, 1167, 1172, 1183, 1190, 1169, 1174, 1186, 1192, 1209, 1174, 1178, 1189, 1194, 1209, 1212, 1169, 1171, 1184, 1194, 1204, 1178, 1210, 1168, 1173, 1176, 1188, 1197, 1198, 1204 and 1200
Then for MaxQuant …
<- testRobustToNAimputation(dataMQ, imputMethod="informed") # MaxQuant , ok
testMQ #> -> testRobustToNAimputation -> matrixNAneighbourImpute -> stableMode : Method='density', length of x =1142, 'bandw' has been set to 47
#> -> testRobustToNAimputation -> matrixNAneighbourImpute : n.woNA= 26963 , n.NA = 2845
#> impute based on 'informed' using mode= 21.48 and sd= 0.5
#> note mean for impuation is below 0.05 quantile !!
#> -> testRobustToNAimputation -> combineMultFilterNAimput : at presenceFilt: 1047 1051 1019 1027 1046 1048 1027 1043 1051 1027 1050 1022 1017 1051 1051 1039 1040 1045 1037 1032 1047 1066 1032 1028 1061 1067 1022 1060 1034 1050 1056 1030 1040 1050 1049 1061 out of 1104
#> -> testRobustToNAimputation -> combineMultFilterNAimput : at abundanceFilt: 998 1006 992 981 999 997 994 1010 1015 995 1032 1009 1000 1029 1025 1027 1028 1032 1025 1016 1025 1052 1014 1009 1043 1045 996 1036 1025 1043 1045 1022 1028 1033 1037 1044
#> -> testRobustToNAimputation -> combineMultFilterNAimput : at NA> mean: 954, 968, 966, 934, 956, 964, 940, 950, 960, 950, 937, 944, 950, 949, 981, 942, 943, 954, 950, 977, 975, 941, 934, 945, 945, 973, 935, 972, 937, 938, 940, 941, 960, 961, 971 and 966
And finally for Proline :
<- testRobustToNAimputation(dataPL, imputMethod="informed") # Proline
testPL #> -> testRobustToNAimputation -> matrixNAneighbourImpute -> stableMode : Method='density', length of x =413, 'bandw' has been set to 28
#> -> testRobustToNAimputation -> matrixNAneighbourImpute : n.woNA= 30782 , n.NA = 1240
#> impute based on 'informed' using mode= 18.74 and sd= 0.5
#> note mean for impuation is below 0.05 quantile !!
#> -> testRobustToNAimputation -> combineMultFilterNAimput : at presenceFilt: 1154 1154 1145 1148 1154 1153 1149 1154 1155 1149 1156 1148 1142 1156 1156 1149 1153 1154 1148 1147 1155 1167 1163 1159 1167 1167 1161 1167 1151 1155 1156 1150 1150 1158 1153 1169 out of 1186
#> -> testRobustToNAimputation -> combineMultFilterNAimput : at abundanceFilt: 1126 1129 1116 1127 1125 1122 1131 1132 1129 1127 1140 1129 1118 1134 1131 1136 1138 1134 1131 1128 1136 1152 1140 1130 1140 1137 1131 1143 1139 1140 1138 1136 1134 1139 1139 1144
#> -> testRobustToNAimputation -> combineMultFilterNAimput : at NA> mean: 1106, 1108, 1108, 1106, 1114, 1109, 1106, 1107, 1102, 1111, 1111, 1109, 1102, 1111, 1119, 1115, 1114, 1108, 1115, 1121, 1122, 1112, 1108, 1103, 1113, 1119, 1111, 1124, 1114, 1113, 1108, 1117, 1120, 1122, 1124 and 1122
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 :
$datImp <- testPD$datImp # recuperate imputeded data to main data-object
dataPD$datImp <- testMQ$datImp
dataMQ$datImp <- testPL$datImp dataPL
In this section all proteins identified and quantified are compared
in a pair-wise fashion based on 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.
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)
<- 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),
signCount 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) )
<- numPairDeColNames(testPD$BH, stripTxt="amol", sortByAbsRatio=TRUE)
table1 <- cbind(table1, signCount[table1[,1],])
table1 rownames(table1) <- colnames(testMQ$BH)[table1[,1]]
kable(table1, caption="All pairwise comparisons and number of significant proteins", align="c")
index | log2rat | conc1 | conc2 | sig.PD.BH | sig.PD.lfdr | sig.MQ.BH | sig.MQ.lfdr | sig.PL.BH | sig.PL.lfdr | |
---|---|---|---|---|---|---|---|---|---|---|
50-50000 | 34 | 9.966 | 50 | 50000 | 579 | 536 | 392 | 314 | 575 | 490 |
25000-50 | 15 | 8.966 | 50 | 25000 | 619 | 562 | 409 | 355 | 559 | 489 |
125-50000 | 29 | 8.644 | 125 | 50000 | 369 | 285 | 223 | 168 | 408 | 343 |
12500-50 | 12 | 7.966 | 50 | 12500 | 526 | 485 | 317 | 281 | 481 | 415 |
125-25000 | 7 | 7.644 | 125 | 25000 | 362 | 301 | 183 | 166 | 310 | 243 |
250-50000 | 31 | 7.644 | 250 | 50000 | 351 | 291 | 256 | 218 | 315 | 252 |
125-12500 | 1 | 6.644 | 125 | 12500 | 226 | 189 | 98 | 72 | 236 | 187 |
250-25000 | 9 | 6.644 | 250 | 25000 | 236 | 194 | 182 | 141 | 214 | 150 |
50-5000 | 27 | 6.644 | 50 | 5000 | 579 | 514 | 345 | 297 | 519 | 476 |
500-50000 | 35 | 6.644 | 500 | 50000 | 364 | 286 | 254 | 187 | 368 | 287 |
12500-250 | 3 | 5.644 | 250 | 12500 | 119 | 86 | 56 | 35 | 118 | 91 |
2500-50 | 14 | 5.644 | 50 | 2500 | 559 | 483 | 321 | 247 | 495 | 454 |
25000-500 | 20 | 5.644 | 500 | 25000 | 283 | 213 | 186 | 129 | 223 | 156 |
125-5000 | 22 | 5.322 | 125 | 5000 | 271 | 241 | 133 | 95 | 215 | 156 |
12500-500 | 17 | 4.644 | 500 | 12500 | 161 | 103 | 59 | 32 | 125 | 82 |
125-2500 | 4 | 4.322 | 125 | 2500 | 189 | 160 | 85 | 72 | 180 | 152 |
250-5000 | 24 | 4.322 | 250 | 5000 | 169 | 104 | 125 | 88 | 131 | 107 |
2500-50000 | 32 | 4.322 | 2500 | 50000 | 312 | 223 | 162 | 137 | 268 | 188 |
250-2500 | 6 | 3.322 | 250 | 2500 | 91 | 66 | 25 | 24 | 90 | 68 |
2500-25000 | 10 | 3.322 | 2500 | 25000 | 77 | 58 | 22 | 16 | 78 | 56 |
50-500 | 21 | 3.322 | 50 | 500 | 441 | 412 | 236 | 174 | 383 | 344 |
500-5000 | 28 | 3.322 | 500 | 5000 | 182 | 133 | 117 | 85 | 134 | 103 |
5000-50000 | 36 | 3.322 | 5000 | 50000 | 312 | 240 | 183 | 129 | 319 | 275 |
12500-2500 | 5 | 2.322 | 2500 | 12500 | 20 | 12 | 5 | 4 | 40 | 27 |
250-50 | 13 | 2.322 | 50 | 250 | 361 | 285 | 194 | 145 | 319 | 280 |
2500-500 | 19 | 2.322 | 500 | 2500 | 128 | 86 | 49 | 41 | 103 | 76 |
25000-5000 | 26 | 2.322 | 5000 | 25000 | 83 | 63 | 64 | 52 | 87 | 63 |
125-500 | 16 | 2.000 | 125 | 500 | 21 | 16 | 6 | 2 | 36 | 32 |
12500-50000 | 30 | 2.000 | 12500 | 50000 | 220 | 149 | 102 | 64 | 165 | 106 |
125-50 | 11 | 1.322 | 50 | 125 | 285 | 243 | 149 | 124 | 226 | 178 |
12500-5000 | 23 | 1.322 | 5000 | 12500 | 25 | 17 | 3 | 2 | 32 | 21 |
125-250 | 2 | 1.000 | 125 | 250 | 14 | 9 | 0 | 0 | 2 | 1 |
12500-25000 | 8 | 1.000 | 12500 | 25000 | 12 | 10 | 1 | 0 | 30 | 15 |
250-500 | 18 | 1.000 | 250 | 500 | 5 | 1 | 2 | 0 | 3 | 2 |
2500-5000 | 25 | 1.000 | 2500 | 5000 | 14 | 9 | 2 | 1 | 16 | 10 |
25000-50000 | 33 | 1.000 | 25000 | 50000 | 173 | 118 | 102 | 83 | 101 | 73 |
<- extractTestingResults(testMQ, compNo=1, thrsh=0.05, FCthrs=2)
resMQ1 <- extractTestingResults(testPD, compNo=1, thrsh=0.05, FCthrs=2)
resPD1 <- extractTestingResults(testPL, compNo=1, thrsh=0.05, FCthrs=2) resPL1
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=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")
index | log2rat | conc1 | conc2 | sig.PD.BH | sig.PD.lfdr | sig.MQ.BH | sig.MQ.lfdr | sig.PL.BH | sig.PL.lfdr | |
---|---|---|---|---|---|---|---|---|---|---|
50-5000 | 27 | 6.644 | 50 | 5000 | 579 | 514 | 345 | 297 | 519 | 476 |
50-500 | 21 | 3.322 | 50 | 500 | 441 | 412 | 236 | 174 | 383 | 344 |
125-250 | 2 | 1.000 | 125 | 250 | 14 | 9 | 0 | 0 | 2 | 1 |
Here we’ll consider all possible pairwise comparisons, as shown below.
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.
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.
Below, these calculations of summarizeForROC() are run in batch.
layout(1)
<- lapply(table1[,1], function(x) summarizeForROC(testPD, useComp=x, annotCol="SpecType", spec=c("Yeast","UPS1"), tyThr="BH", plotROC=FALSE,silent=TRUE))
rocPD <- lapply(table1[,1], function(x) summarizeForROC(testMQ, useComp=x, annotCol="SpecType", spec=c("Yeast","UPS1"), tyThr="BH", plotROC=FALSE,silent=TRUE))
rocMQ <- lapply(table1[,1], function(x) summarizeForROC(testPL, useComp=x, annotCol="SpecType", spec=c("Yeast","UPS1"), tyThr="BH", plotROC=FALSE,silent=TRUE))
rocPL
# we still need to add the names for the pair-wise groups:
names(rocPD) <- names(rocMQ) <- names(rocPL) <- rownames(table1)
The next step consists in calculating the area under the curve (AUC) for the individual profiles of each pairwise comparison.
## calulate AUC for each ROC
<- cbind(ind=table1[match(names(rocPD), rownames(table1)),"index"], clu=NA,
AucAll 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 :
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 used 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.
disperse/distinct group of low concentration-pairs (separated by PC1, mostly containing at least one 50 or 500fmol), low/med conc pairs (containing 2500, ev 5000) and the rest (med+high to any, high degree of text-superposition). Furthermore,
Now we are ready to inspect the 5 clusters in detail :
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
<- 5
nGr ## K-Means clustering
<- stats::kmeans(standardW(AucAll[,c("PD","MQ","PL")]), nGr)$cluster
kMAx table(kMAx)
#> kMAx
#> 1 2 3 4 5
#> 3 2 6 6 19
"clu"] <- kMAx AucAll[,
<- reorgByCluNo(AucAll, cluNo=kMAx, useColumn=c("PD","MQ","PL"))
AucAll <- cbind(AucAll, iniInd=table1[match(rownames(AucAll), rownames(table1)), "index"])
AucAll colnames(AucAll)[1:(which(colnames(AucAll)=="index")-1)] <- paste("Auc",colnames(AucAll)[1:(which(colnames(AucAll)=="index")-1)], sep=".")
"cluNo"] <- rep(nGr:1, table(AucAll[,"cluNo"])) # make cluNo descending
AucAll[,
<- AucAll[,"cluNo"] # update
kMAx table(AucAll[,"cluNo"])
#>
#> 1 2 3 4 5
#> 6 2 3 6 19
## 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:
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):
<- table(AucAll[,"cluNo"])[rank(unique(AucAll[,"cluNo"]))] # representative for each cluster
AucRep <- round(cumsum(AucRep) -AucRep/2 +0.1)
AucRep
## 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")
Auc.PD | Auc.MQ | Auc.PL | cluNo | |
---|---|---|---|---|
12500-500 | 0.963 | 0.993 | 0.992 | 5 |
125-12500 | 0.876 | 0.918 | 0.992 | 4 |
125-5000 | 0.885 | 0.866 | 0.987 | 3 |
125-2500 | 0.712 | 0.549 | 0.947 | 2 |
125-250 | 0.431 | 0.705 | 0.461 | 1 |
Now we can check if some experimental UPS1 log-fold-change have a bias for some clusters.
<- sapply(5:1, function(x) { y <- table1[match(rownames(AucAll),rownames(table1)),]
ratTab 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 high number signif proteins", 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.
<- 2:5
colPanel <- 5
gr <- match(rownames(AucAll)[AucRep[6-gr]], colnames(testPD$t))
j
## table of all proteins in cluster
<- which(AucAll[,"cluNo"]==gr)
useLi <- cbind(round(as.data.frame(AucAll)[useLi,c("cluNo","Auc.PD","Auc.MQ","Auc.PL")],3),
tmp 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")
cluNo | Auc.PD | Auc.MQ | Auc.PL | log2rat | sig.PD.BH | sig.MQ.BH | sig.PL.BH | |
---|---|---|---|---|---|---|---|---|
25000-500 | 5 | 0.985 | 0.999 | 0.994 | 5.644 | 283 | 186 | 223 |
2500-25000 | 5 | 0.982 | 1.000 | 0.993 | 3.322 | 77 | 22 | 78 |
250-25000 | 5 | 0.979 | 0.999 | 0.997 | 6.644 | 236 | 182 | 214 |
500-50000 | 5 | 0.982 | 0.999 | 0.994 | 6.644 | 364 | 254 | 368 |
125-50000 | 5 | 0.978 | 0.999 | 0.995 | 8.644 | 369 | 223 | 408 |
250-50000 | 5 | 0.975 | 0.999 | 0.996 | 7.644 | 351 | 256 | 315 |
2500-50000 | 5 | 0.972 | 0.999 | 0.992 | 4.322 | 312 | 162 | 268 |
50-50000 | 5 | 0.973 | 0.998 | 0.990 | 9.966 | 579 | 392 | 575 |
25000-5000 | 5 | 0.973 | 0.999 | 0.981 | 2.322 | 83 | 64 | 87 |
12500-500 | 5 | 0.963 | 0.993 | 0.992 | 4.644 | 161 | 59 | 125 |
125-25000 | 5 | 0.963 | 0.988 | 0.995 | 7.644 | 362 | 183 | 310 |
5000-50000 | 5 | 0.965 | 0.994 | 0.986 | 3.322 | 312 | 183 | 319 |
12500-250 | 5 | 0.953 | 0.989 | 0.997 | 5.644 | 119 | 56 | 118 |
25000-50 | 5 | 0.956 | 0.991 | 0.987 | 8.966 | 619 | 409 | 559 |
12500-50 | 5 | 0.937 | 0.992 | 0.988 | 7.966 | 526 | 317 | 481 |
250-5000 | 5 | 0.952 | 0.958 | 0.994 | 4.322 | 169 | 125 | 131 |
12500-2500 | 5 | 0.920 | 0.998 | 0.982 | 2.322 | 20 | 5 | 40 |
500-5000 | 5 | 0.964 | 0.931 | 0.987 | 3.322 | 182 | 117 | 134 |
12500-50000 | 5 | 0.916 | 0.983 | 0.977 | 2.000 | 220 | 102 | 165 |
## frequent concentrations :
layout(matrix(1:2), heights=c(1,2.5))
plotConcHist(mat=tmp, ref=table1)
## representative ROC
<- match(rownames(AucAll)[AucRep[6-gr]], names(rocPD))
jR 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)}
#> Warning in graphics::par(opar$las): argument 1 does not name a graphical
#> parameter
#> Warning in graphics::par(opar$las): argument 1 does not name a graphical
#> parameter
#> Warning in graphics::par(opar$las): argument 1 does not name a graphical
#> parameter
<- 4
gr <- match(rownames(AucAll)[AucRep[6-gr]], colnames(testPD$t))
j
## table of all proteins in cluster
<- which(AucAll[,"cluNo"]==gr)
useLi <- cbind(round(as.data.frame(AucAll)[useLi,c("cluNo","Auc.PD","Auc.MQ","Auc.PL")],3),
tmp 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")
cluNo | Auc.PD | Auc.MQ | Auc.PL | log2rat | sig.PD.BH | sig.MQ.BH | sig.PL.BH | |
---|---|---|---|---|---|---|---|---|
12500-5000 | 4 | 0.885 | 0.968 | 0.939 | 1.322 | 25 | 3 | 32 |
50-5000 | 4 | 0.891 | 0.933 | 0.961 | 6.644 | 579 | 345 | 519 |
125-12500 | 4 | 0.876 | 0.918 | 0.992 | 6.644 | 226 | 98 | 236 |
25000-50000 | 4 | 0.875 | 0.928 | 0.924 | 1.000 | 173 | 102 | 101 |
12500-25000 | 4 | 0.855 | 0.936 | 0.926 | 1.000 | 12 | 1 | 30 |
2500-5000 | 4 | 0.810 | 0.950 | 0.922 | 1.000 | 14 | 2 | 16 |
## frequent concentrations :
layout(matrix(1:2), heights=c(1,2.5))
plotConcHist(mat=tmp, ref=table1)
## representative ROC
<- match(rownames(AucAll)[AucRep[6-gr]], names(rocPD))
jR 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 graphics::par(opar$las): argument 1 does not name a graphical
#> parameter
#> Warning in graphics::par(opar$las): argument 1 does not name a graphical
#> parameter
#> Warning in graphics::par(opar$las): argument 1 does not name a graphical
#> parameter
<- 3
gr <- match(rownames(AucAll)[AucRep[6-gr]], colnames(testPD$t))
j
## table of all proteins in cluster
<- which(AucAll[,"cluNo"]==gr)
useLi <- cbind(round(as.data.frame(AucAll)[useLi,c("cluNo","Auc.PD","Auc.MQ","Auc.PL")],3),
tmp 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")
cluNo | Auc.PD | Auc.MQ | Auc.PL | log2rat | sig.PD.BH | sig.MQ.BH | sig.PL.BH | |
---|---|---|---|---|---|---|---|---|
2500-500 | 3 | 0.897 | 0.878 | 0.963 | 2.322 | 128 | 49 | 103 |
125-5000 | 3 | 0.885 | 0.866 | 0.987 | 5.322 | 271 | 133 | 215 |
2500-50 | 3 | 0.866 | 0.842 | 0.906 | 5.644 | 559 | 321 | 495 |
## frequent concentrations :
layout(matrix(1:2), heights=c(1,2.5))
plotConcHist(mat=tmp, ref=table1)
## representative ROC
<- match(rownames(AucAll)[AucRep[6-gr]], names(rocPD))
jR 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 graphics::par(opar$las): argument 1 does not name a graphical
#> parameter
#> Warning in graphics::par(opar$las): argument 1 does not name a graphical
#> parameter
#> Warning in graphics::par(opar$las): argument 1 does not name a graphical
#> parameter
<- 2
gr <- match(rownames(AucAll)[AucRep[6-gr]], colnames(testPD$t))
j
## table of all proteins in cluster
<- which(AucAll[,"cluNo"]==gr)
useLi <- cbind(round(as.data.frame(AucAll)[useLi,c("cluNo","Auc.PD","Auc.MQ","Auc.PL")],3),
tmp 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")
cluNo | Auc.PD | Auc.MQ | Auc.PL | log2rat | sig.PD.BH | sig.MQ.BH | sig.PL.BH | |
---|---|---|---|---|---|---|---|---|
125-2500 | 2 | 0.712 | 0.549 | 0.947 | 4.322 | 189 | 85 | 180 |
250-2500 | 2 | 0.822 | 0.456 | 0.978 | 3.322 | 91 | 25 | 90 |
## frequent concentrations :
layout(matrix(1:2), heights=c(1,2.5))
plotConcHist(mat=tmp, ref=table1)
## representative ROC
<- match(rownames(AucAll)[AucRep[6-gr]], names(rocPD))
jR 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 graphics::par(opar$las): argument 1 does not name a graphical
#> parameter
#> Warning in graphics::par(opar$las): argument 1 does not name a graphical
#> parameter
#> Warning in graphics::par(opar$las): argument 1 does not name a graphical
#> parameter
<- 1
gr <- match(rownames(AucAll)[AucRep[6-gr]], colnames(testPD$t))
j
## table of all proteins in cluster
<- which(AucAll[,"cluNo"]==gr)
useLi <- cbind(round(as.data.frame(AucAll)[useLi,c("cluNo","Auc.PD","Auc.MQ","Auc.PL")],3),
tmp 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")
cluNo | Auc.PD | Auc.MQ | Auc.PL | log2rat | sig.PD.BH | sig.MQ.BH | sig.PL.BH | |
---|---|---|---|---|---|---|---|---|
250-500 | 1 | 0.561 | 0.457 | 0.635 | 1.000 | 5 | 2 | 3 |
125-500 | 1 | 0.515 | 0.436 | 0.687 | 2.000 | 21 | 6 | 36 |
125-250 | 1 | 0.431 | 0.705 | 0.461 | 1.000 | 14 | 0 | 2 |
125-50 | 1 | 0.501 | 0.349 | 0.499 | 1.322 | 285 | 149 | 226 |
250-50 | 1 | 0.372 | 0.473 | 0.455 | 2.322 | 361 | 194 | 319 |
50-500 | 1 | 0.452 | 0.335 | 0.487 | 3.322 | 441 | 236 | 383 |
## frequent concentrations :
layout(matrix(1:2, ncol=1), heights=c(1,2.5))
plotConcHist(mat=tmp, ref=table1)
## representative ROC
<- match(rownames(AucAll)[AucRep[6-gr]], names(rocPD))
jR 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 graphics::par(opar$las): argument 1 does not name a graphical
#> parameter
#> Warning in graphics::par(opar$las): argument 1 does not name a graphical
#> parameter
#> Warning in graphics::par(opar$las): argument 1 does not name a graphical
#> parameter
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’.
<- rbind(PD=sumNAperGroup(dataPD$raw[which(dataPD$annot[,"SpecType"]=="UPS1"),], grp9),
tab1 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")
1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | |
---|---|---|---|---|---|---|---|---|---|
PD | 79 | 73 | 69 | 43 | 1 | 0 | 0 | 0 | 0 |
MQ | 112 | 113 | 109 | 98 | 19 | 10 | 3 | 4 | 1 |
PL | 27 | 32 | 34 | 20 | 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 :
<- function(dat, newOrd=UPS1$ac, relative=FALSE) { # count number of NAs per UPS protein and order as UPS
countRawNA <- rowSums(is.na(dat$raw[match(newOrd,rownames(dat$raw)),]))
out if(relative) out/nrow(dat$raw) else out }
<- cbind(PD=countRawNA(dataPD), MQ=countRawNA(dataMQ), PL=countRawNA(dataPL) )
sumNAperMeth <- sub("_UPS","",dataPL$annot[UPS1$ac,"EntryName"])
UPS1na 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=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.
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
‘UPS1’.
plotPCAw(testPD$datImp[which(testPD$annot[,"SpecType"]=="UPS1"),], sampleGrp=grp9, tit="PCA on ProteomeDiscoverer, UPS1 only (NAs imputed)", rowTyName="proteins", useSymb2=0)
plotPCAw(testMQ$datImp[which(testMQ$annot[,"SpecType"]=="UPS1"),], sampleGrp=grp9, tit="PCA on MaxQuant, UPS1 only (NAs imputed)", rowTyName="proteins", useSymb2=0)
plotPCAw(testPL$datImp[which(testPL$annot[,"SpecType"]=="UPS1"),], sampleGrp=grp9, tit="PCA on Proline, UPS1 only (NAs imputed)", rowTyName="proteins", useSymb2=0)
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.
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)
<- 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"]=="UPS1"),], grp9))))
sumNAinPD[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=".")
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)
<- 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"]=="UPS1"),], grp9))))
sumNAinMQ[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=".")
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)
<- 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"]=="UPS1"),], grp9))))
sumNAinPL[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=".")
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,
First, we construct a container for storing various measures and results which we will look at lateron.
## prepare object for storing all results
<- array(NA, dim=c(length(UPS1$ac),length(methNa),7), dimnames=list(UPS1$ac,c("PD","MQ","PL"),
datUPS1 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 aftr clustering the regression-results.
<- list(length=length(NamesUpsPD))
lmPD <- FALSE
doPl 1:length(NamesUpsPD)] <- lapply(NamesUpsPD[1:length(NamesUpsPD)], linModelSelect, dat=dataPD,
lmPD[expect=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)
<- match(names(lmPD), UPS1$ac)
linIn 1,c("logp","slope","startFr")] <- cbind(log10(sapply(lmPD, function(x) x$coef[2,4])),
datUPS1[linIn,sapply(lmPD, function(x) x$coef[2,1]), sapply(lmPD, function(x) x$startLev) )
## need correct rownames in dataPD$datImp !!!
1,"medAbund"] <- apply(wrMisc::.scale01(dataPD$datImp)[match(UPS1$ac,rownames(dataPD$datImp)),],1,median,na.rm=TRUE) datUPS1[,
<- list(length=length(NamesUpsMQ))
lmMQ 1:length(NamesUpsMQ)] <- lapply(NamesUpsMQ[1:length(NamesUpsMQ)], linModelSelect, dat=dataMQ,
lmMQ[expect=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)
<- match(names(lmMQ), UPS1$ac)
linIn 2,c("logp","slope","startFr")] <- cbind( log10(sapply(lmMQ, function(x) x$coef[2,4])),
datUPS1[linIn,sapply(lmMQ, function(x) x$coef[2,1]), sapply(lmMQ, function(x) x$startLev) )
2,"medAbund"] <- apply(wrMisc::.scale01(dataMQ$datImp)[match(UPS1$ac,rownames(dataMQ$datImp)),],1,median,na.rm=TRUE) datUPS1[,
<- list(length=length(NamesUpsPL))
lmPL 1:length(NamesUpsPL)] <- lapply(NamesUpsPL[1:length(NamesUpsPL)], linModelSelect, dat=dataPL,
lmPL[expect=grp9, startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=doPl, silent=TRUE)
names(lmPL) <- NamesUpsPL
<- match(names(lmPL), UPS1$ac)
linIn 3,c("logp","slope","startFr")] <- cbind(log10(sapply(lmPL, function(x) x$coef[2,4])),
datUPS1[linIn,sapply(lmPL, function(x) x$coef[2,1]), sapply(lmPL, function(x) x$startLev) )
3,"medAbund"] <- apply(wrMisc::.scale01(dataPL$datImp)[match(UPS1$ac,rownames(dataPL$datImp)),],1,median,na.rm=TRUE) datUPS1[,
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 ?
<- sapply(1:5, function(x) apply(datUPS1[,,"startFr"],2,function(y) sum(x==y)))
stTab colnames(stTab) <- paste("lev",1:5,sep="_")
kable(stTab, caption = "Frequency of starting levels for regression")
lev_1 | lev_2 | lev_3 | lev_4 | lev_5 | |
---|---|---|---|---|---|
PD | 0 | 1 | 15 | 17 | 15 |
MQ | 0 | 0 | 8 | 23 | 17 |
PL | 1 | 0 | 10 | 29 | 8 |
Next, we’ll inspect the relation between regression-slopes and p-values (for H0: slope=0) :
layout(matrix(1:4,ncol=2))
<- "fill according to median abundance (blue=low - green - red=high)"
subTi
plotMultRegrPar(datUPS1, 1, xlim=c(-25,-1), ylim=c(0.1,1.6),tit="ProteomeDiscoverer UPS1, p-value vs slope",subTit=subTi)
plotMultRegrPar(datUPS1, 2, xlim=c(-25,-1), ylim=c(0.1,1.6),tit="MaxQuant UPS1, p-value vs slope",subTit=subTi)
plotMultRegrPar(datUPS1, 3, xlim=c(-25,-1), ylim=c(0.1,1.6),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.
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.
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) datUPS1[,
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))
<- RColorBrewer::brewer.pal(9,"YlOrRd")
col1 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 better 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.
Using the linear regression score defined above we can rank UPS1 proteins and display representative ones in order to avoid crowed 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
<- 5
nGr
## clustering using kMeans
<- stats::kmeans(standardW(datUPS1[,,"sco"], byColumn=FALSE), nGr)$cluster
kMx "cluNo"] <- matrix(rep(kMx,dim(datUPS1)[2]), nrow=length(kMx))
datUPS1[,,
<- apply(datUPS1[,,"sco"], 1, function(x) prod(x)^(1/length(x))) # geometric mean across analysis soft
geoM <- lrbind(by(cbind(geoM,datUPS1[,,"sco"], clu=kMx), kMx, function(x) x[order(x[,1],decreasing=TRUE),])) # organize by clusters
geoM2 <- tapply(geoM2[,"geoM"], geoM2[,"clu"], median)
tmp "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
geoM2[,
profileAsClu(geoM2[,2:4], geoM2[,"clu"], tit="Clustered Regression Results for UPS1 Proteins", ylab="Linear regression score")
<- datUPS1[match(rownames(geoM2), rownames(datUPS1)),,] # bring in new order
datUPS1 "cluNo"] <- geoM2[,"clu"] # update cluster-names
datUPS1[,,
### prepare annotation of UPS proteins
<- 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) annUPS1[,
## index of representative for each cluster (median position inside cluster)
<- tapply(geoM2[,"geoM"], geoM2[,"clu"], function(x) floor(length(x)/2))+ c(0,cumsum(table(geoM2[,"clu"])[-5])) UPSrep
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.
<- 1
gr <- which(datUPS1[,1,"cluNo"]==gr)
useLi <- c("Protein",paste(colnames(datUPS1), rep(c("slope","logp"), each=ncol(datUPS1)), sep=" "))
colNa try(kable(cbind(annUPS1[useLi,2], signif(datUPS1[useLi,,"slope"],3), signif(datUPS1[useLi,,"logp"],3)),
caption="Regression details for cluster of best UPS1 proteins ", col.names=colNa, align="l"),silent=TRUE)
Protein | PD slope | MQ slope | PL slope | PD logp | MQ logp | PL logp | |
---|---|---|---|---|---|---|---|
P01031 | Complement C5 (C5a anaphylatoxin) (Chain 6 | 2.33 | 4.3 | 5.98 | -8.22 | -5.75 | -13 |
P01375 | Tumor necrosis factor, soluble form (Chain | 5.99 | 5.27 | 5.91 | -20.1 | -18.5 | -18.8 |
P69905 | Hemoglobin subunit alpha (Chain 2-142) | 2.6 | 1.46 | 5.24 | -8.06 | -1.22 | -8.34 |
P63279 | SUMO-conjugating enzyme UBC9 (Chain 1-158) | 5.31 | 5.51 | 6.33 | -11.9 | -7.27 | -12.2 |
P55957 | BH3-interacting domain death agonist (Chai | 5.03 | 5.22 | 5.47 | -14.1 | -12.9 | -14 |
P10599 | Thioredoxin (Chain 2-105, N-terminal His | 4.99 | 3.41 | 5.42 | -11.1 | -4.48 | -16.7 |
## 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))
<- paste0(methNa,", ",annUPS1[UPSrep[gr],1])
tit try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataPD, tit=tit[1], expect=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=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=grp9, startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE) }
<- 2
gr <- which(datUPS1[,1,"cluNo"]==gr)
useLi try(kable(cbind(annUPS1[useLi,2], signif(datUPS1[useLi,,"slope"],3), signif(datUPS1[useLi,,"logp"],3)),
caption="Regression details for cluster of 2nd best UPS1 proteins ", col.names=colNa, align="l"),silent=TRUE)
Protein | PD slope | MQ slope | PL slope | PD logp | MQ logp | PL logp | |
---|---|---|---|---|---|---|---|
P02788 | Lactotransferrin (Chain 20-710) | 6.43 | 7.9 | 4.15 | -12.5 | -13.6 | -15.2 |
P63165 | Small ubiquitin-related modifier 1 (Chain | 6.7 | 7.21 | 4.07 | -8.36 | -11.4 | -13 |
P16083 | Ribosyldihydronicotinamide dehydrogenase [ | 6.11 | 9.62 | 5.86 | -11.6 | -13.5 | -13.4 |
P01127 | Platelet-derived growth factor B chain (Ch | 6.64 | 7.7 | 5.78 | -15.2 | -13.9 | -16.8 |
if(packageVersion("wrGraph") >= "1.2.5"){
layout(matrix(1:4, ncol=2))
<- paste0(methNa,", ",annUPS1[UPSrep[gr],1])
tit try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataPD, tit=tit[1], expect=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=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=grp9, startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE) }
<- 3
gr <- which(datUPS1[,1,"cluNo"]==gr)
useLi 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)
Protein | PD slope | MQ slope | PL slope | PD logp | MQ logp | PL logp | |
---|---|---|---|---|---|---|---|
O00762 | Ubiquitin-conjugating enzyme E2 C (Chain 1 | 4.92 | 6.21 | 4.47 | -13.6 | -12.9 | -14.7 |
P01133 | Pro-Epidermal growth factor (EGF) (Chain 9 | 5.08 | 5.49 | 4.62 | -14.1 | -11 | -13.4 |
P15559 | NAD(P)H dehydrogenase [quinone] 1 (Chain 2 | 0.324 | 5.41 | 0.601 | -11.8 | -13.6 | -11.2 |
Q06830 | Peroxiredoxin 1 (Chain 2-199) | 4.82 | 6.28 | 4.1 | -16.7 | -10.6 | -14.9 |
P02753 | Retinol-binding protein 4 (Chain 19-201) | 2.81 | 4.7 | 4.18 | -9.35 | -8.14 | -16 |
P08263 | Glutathione S-transferase A1 (Chain 2-222) | 2.25 | 6.17 | 0.669 | -10.5 | -14.6 | -7.79 |
P01344 | Insulin-like growth factor II (Chain 25-91 | 5.17 | 4.6 | 4.35 | -14.7 | -13.9 | -16.5 |
P99999 | Cytochrome c (Chain 2-105) | 3.88 | 6.38 | 3.56 | -10.5 | -12.6 | -11.2 |
P01112 | GTPase HRas (Chain 1-189) | 4.48 | 5.25 | 4.01 | -14.1 | -11.7 | -16.2 |
P02741 | C-reactive protein (Chain 19-224) | 2.13 | 5.23 | 3.93 | -9.46 | -6.24 | -11.5 |
P00441 | Superoxide dismutase [Cu-Zn] (Chain 2-154) | 3.9 | 4.79 | 3.26 | -9.84 | -7.97 | -10 |
if(packageVersion("wrGraph") >= "1.2.5"){
layout(matrix(1:4, ncol=2))
<- paste0(methNa,", ",annUPS1[UPSrep[gr],1])
tit try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataPD, tit=tit[1], expect=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=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=grp9, startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE) }
<- 4
gr <- which(datUPS1[,1,"cluNo"]==gr)
useLi 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)
Protein | PD slope | MQ slope | PL slope | PD logp | MQ logp | PL logp | |
---|---|---|---|---|---|---|---|
P09211 | Glutathione S-transferase P (Chain 2-210) | 6.5 | 6.56 | 3.46 | -11.3 | -9.99 | -11.4 |
P02144 | Myoglobin (Chain 2-154) | 6.32 | 6.72 | 3.11 | -13.7 | -17.4 | -11.3 |
P62988 | Ubiquitin (Chain 1-76, N-terminal His tag) | 5.9 | 5.47 | 0.355 | -11.2 | -11 | -11.1 |
P51965 | Ubiquitin-conjugating enzyme E2 E1 (Chain | 5.86 | 5.94 | 3.52 | -13.7 | -9.84 | -12.6 |
P01579 | Interferon Gamma (Chain 23-166) | 5.53 | 5.41 | 4.79 | -13.7 | -11.7 | -15.2 |
P41159 | Leptin (Chain 22-167) | 6.3 | 5.85 | 4.67 | -19.3 | -14.4 | -14 |
P62937 | Peptidyl-prolyl cis-trans isomerase A (Cha | 6.16 | 6.59 | 4.62 | -13.5 | -14.7 | -12.7 |
P61626 | Lysozyme C (Chain 19-148) | 6.9 | 4.85 | 5.78 | -13.8 | -11.4 | -14.7 |
Q15843 | NEDD8 (Chain 1-81) | 6.04 | 4.23 | 5.21 | -12.3 | -5.96 | -14.4 |
P01008 | Antithrombin-III (Chain 33-464) | 6.02 | 6.2 | 4.98 | -13.1 | -13.5 | -13.9 |
P61769 | Beta-2-microglobulin (Chain 21-119) | 6.23 | 5.56 | 5.2 | -12.7 | -7.18 | -12.6 |
P10145 | Interleukin-8, IL-8 (Chain 28-99) | 6.59 | 4.28 | 4.85 | -11.2 | -7.39 | -14 |
if(packageVersion("wrGraph") >= "1.2.5"){
layout(matrix(1:4, ncol=2))
<- paste0(methNa,", ",annUPS1[UPSrep[gr],1])
tit try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataPD, tit=tit[1], expect=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=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=grp9, startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE) }
<- 5
gr <- which(datUPS1[,1,"cluNo"]==gr)
useLi 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)
Protein | PD slope | MQ slope | PL slope | PD logp | MQ logp | PL logp | |
---|---|---|---|---|---|---|---|
P06396 | Gelsolin (Chain 28-782) | 5.85 | 7.49 | 3.65 | -15.4 | -14.5 | -10.9 |
P02768 | Serum albumin (Chain 26-609) | 5.54 | 7.13 | 4.72 | -14.8 | -12.8 | -18.1 |
P68871 | Hemoglobin subunit beta (Chain 2-147) | 4.8 | 8.36 | 3.85 | -12.7 | -14.8 | -14.7 |
O76070 | Gamma-synuclein (Chain 1-127) | 5.56 | 6.78 | 4.04 | -12.8 | -12.4 | -11.7 |
P06732 | Creatine kinase M-type (Chain 1-381) | 5.31 | 7.66 | 4.91 | -13.7 | -13.5 | -17.6 |
P08758 | Annexin A5 (Chain 2-320) | 5.51 | 7.04 | 4.54 | -18.6 | -15.2 | -16.3 |
P00918 | Carbonic anhydrase 2 (Chain 2-260) | 5.83 | 6.93 | 4.89 | -15.6 | -12.7 | -15.6 |
P02787 | Serotransferrin (Chain 20-698) | 5.8 | 6.74 | 4.2 | -18.4 | -13.8 | -11.1 |
P12081 | Histidyl-tRNA synthetase, cytoplasmic (Cha | 4.81 | 6.59 | 3.91 | -13.5 | -12.1 | -12.3 |
P00709 | Alpha-lactalbumin (Chain 20-142) | 5.14 | 7.27 | 4.89 | -14.5 | -15.9 | -15.3 |
P00915 | Carbonic anhydrase 1 (Chain 2-261) | 5.45 | 7.72 | 5.21 | -16.1 | -16 | -17.7 |
P04040 | Catalase (Chain 2-527) | 4.35 | 7.14 | 4.81 | -11.9 | -12.1 | -17.6 |
P00167 | Cytochrome b5 (Chain 1-134, N-terminal His | 5.43 | 6.91 | 5.34 | -15.9 | -13 | -14.3 |
P05413 | Fatty acid-binding protein, heart (Chain 2 | 5.92 | 7.1 | 5.19 | -14.9 | -15 | -17.3 |
P10636-8 | Microtubule-associated protein tau (Isofor | 5.18 | 6.89 | 5.31 | -15.6 | -14.1 | -17.9 |
if(packageVersion("wrGraph") >= "1.2.5"){
layout(matrix(1:4, ncol=2))
<- paste0(methNa,", ",annUPS1[UPSrep[gr],1])
tit try(tm <- linModelSelect(annUPS1[UPSrep[gr],1], dat=dataPD, tit=tit[1], expect=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=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=grp9, startLev=1:5, cexXAxis=0.7, logExpect=TRUE, plotGraph=TRUE, silent=TRUE),silent=TRUE) }
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 for the protein identifcation part/software chosen.
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 in choosing cutoff values 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 as thershold for calling differential abundant proteins.
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.
For completeness :
#> R version 4.2.1 (2022-06-23 ucrt)
#> Platform: x86_64-w64-mingw32/x64 (64-bit)
#> Running under: Windows 10 x64 (build 19042)
#>
#> 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
#>
#> attached base packages:
#> [1] stats graphics grDevices utils datasets methods base
#>
#> other attached packages:
#> [1] rmarkdown_2.18 knitr_1.40 wrGraph_1.3.1 wrProteo_1.7.0.1
#> [5] wrMisc_1.10.2
#>
#> loaded via a namespace (and not attached):
#> [1] pillar_1.8.1 bslib_0.4.1 compiler_4.2.1 cellranger_1.1.0
#> [5] RColorBrewer_1.1-3 jquerylib_0.1.4 highr_0.9 R.methodsS3_1.8.2
#> [9] R.utils_2.12.2 tools_4.2.1 digest_0.6.29 tibble_3.1.8
#> [13] jsonlite_1.8.3 evaluate_0.18 lifecycle_1.0.3 gtable_0.3.1
#> [17] pkgconfig_2.0.3 rlang_1.0.6 cli_3.4.1 yaml_2.3.6
#> [21] xfun_0.33 fastmap_1.1.0 stringr_1.4.1 vctrs_0.4.2
#> [25] sass_0.4.2 grid_4.2.1 glue_1.6.2 R6_2.5.1
#> [29] fansi_1.0.3 readxl_1.4.1 fdrtool_1.2.17 sm_2.2-5.7.1
#> [33] limma_3.52.4 magrittr_2.0.3 scales_1.2.1 htmltools_0.5.3
#> [37] colorspace_2.0-3 utf8_1.2.2 stringi_1.7.8 munsell_0.5.0
#> [41] cachem_1.0.6 R.oo_1.25.0