Quantitative proteomics: label-free quantitation of proteins

6 minute read

Published:

Updated on September 13, 2021

Liquid chromatography (LC) coupled with mass spectrometry (MS) has been widely used for protein expression quantification. Protein quantification by tandem-MS (MS/MS) uses integrated peak intensity from the parent-ion mass (MS1) or features from fragment-ions (MS2).

Label-free quantification (LFQ) may be based on precursor ion intensity (peak areas or peak heights) or on spectral counting. Here, the MaxLFQ algorithm is applied, which relies on chromatographic ion intensities.

iBAC and LFQ intensity

MS1 methods use the iBAQ (intensity Based Absolute Quantification) algorithm and iBAQ intensity is a protein’s total non-normalised intensity(all peptides) divided by the number of measurable tryptic peptides.

iBAQ: Σintensity/#theoretical peptides

LFQ (label-free quantitation) intensity is a very similar to the iBAQ intensity but the protein intensities are normalized to exculde some “outliers” to best represent the ratio changes of different samples.

Untargeted label-free quantitation (LFQ) of proteins, aims to determine the relative amount of proteins in two or more biological samples. Mass spectrometer generated raw files are used for label-free quantitation of proteins. Base peak chromatograms can be inspected visually using RawMeat1, which is a data quality assessment tool designed for Thermo instruments.

1. MaxQuant Search

All raw files are processed together in a single run by MaxQuant v1.6.15.0 2 with default parameters except the following

Raw data pane

  1. Load all raw data files of a single run.
  2. Select a sample file(s) and edit Set experiment to assign a unique ID. If you don´t assign a unique ID to each biological sample, MaxQuant will put them together in the output.
  3. Select a sample file and edit Set fractions to assign fraction value. If you don’t have a fractionation, set 1.
  4. Number of processors: 4 (depends on your computer)

Group-specific parameters pane

  1. Type: Standard and Multiplicity: 1
  2. Modifications:
    a. Variable modifications: Oxidation(M); Acetyl (Protein N-term); Deamidation (NQ)
    b. Fixed modifications: Carbamidomethyl (C)
  3. Digestion: trypsin
  4. Instrument: Orbitrap
  5. Label-free quantification: LFQ (LFQ min. ratio count: 2)

Global parameters pane

  1. Sequences:
    a. Add D:\Proteomics\HUMAN.fasta (download it from UNIPROT)
    b. Identifier rule: Uniprot identifier
    c. Min. peptide length: 6
    d. Max. peptide mass [Da]: 6000
  2. Protein quantification:
    a. Label min. ratio count: 1
    b. Peptides for quantification: Unique+razor
    c. Modifications used in protein quantification: Oxidation(M); Acetyl (Protein N-term); Deamidation (NQ)
    d. Discard unmodified counterpart peptides: FALSE
  3. Tables
    a. Write msScans tabls: TRUE
  4. MS/MS analyzer
    a. FTMS MS/MS match tolerance: 0.05 Da
    b. ITMS MS/MS match tolerance: 0.6 Da
  5. Identification:
    a. Match between runs: TRUE (optional)
    b. Find dependent peptides: FALSE
    c. Razor protein FDR: TRUE
  6. Label free quantification
    a. iBAQ: TRUE
    b. Separate LFQ in parameter groups: TRUE
  7. Folder locations
    a. Combine folder location: D:\results (optional)

Match between runs: Peptides, which are present in several samples, but not identified via MS/MS in all of them, can still be identified via matching between runs. Setting TRUE will boosts number of identifications.

Database searches are performed using the Andromeda search engine (a peptide search engine based on probabilistic scoring) with the UniProt-SwissProt human canonical database as a reference and a contaminants database of common laboratory contaminants. MaxQuant reports summed intensity for each protein, as well as it`s iBAQ and LFQ values.

Proteins that share all identified peptides are combined into a single protein group. Peptides that match multiple protein groups (“razor” peptides) are assigned to the protein group with the most unique peptides. MaxQuant employs the MaxLFQ algorithm for label-free quantitation (LFQ). Quantification will be performed using razor and unique peptides, including those modified by acetylation (protein N-terminal), oxidation (Met) and deamidation (NQ).

2. Quality Control of MaxQuant Search (optional)

PTXQC3 is an R package used for general quality control of proteomics data, which takes MaxQuant result files.

library("devtools")  
install_github("cbielow/PTXQC", build_vignettes=TRUE, dependencies=TRUE)  

library(PTXQC)  
PTXQC::createReport("path_to_txt_directory")  

Open final report file report_v1.0.5_combined.pdf
proteomics-qc

3. Post processing of MaxQuant Search results

Further data processing is performed using `Perseus v1.6.14.0)4. In brief, protein group LFQ intensities are log2-transformed to reduce the effect of outliers. To overcome the obstacle of missing LFQ values, missing values are imputed before fit the models. Hierarchical clustering is performed on Z-score normalized, log2-transformed LFQ intensities. Log ratios are calculated as the difference in average log2 LFQ intensity values between experimental and control groups. Two-tailed, Student’s t test calculations are used in statistical tests. A protein is considered statistically significant if its fold change is ≥ 2 and FDR ≤ 0.01. Please refer to its documentation for more details.

Export Perseus processed LFQ data as a text file Perseus_filtered_transformed_valid_values_imputed_ttest.txt

4. Perseus exported file processing

PerseusR enables the interoperability between the Perseus platform for omics data analysis (Tyanova et al. 2016). If you select “Write quality and imputed matrices” when you save Perseus processed data as a text file, inlude additionalMatrices=TRUE.

library(PerseusR)

setwd("/Users/Documents/Proteomics/Perseus")

inFile <- "Perseus_filtered_transformed_valid_values_imputed_ttest.txt"
mdata <- PerseusR::read.perseus.as.matrixData(inFile,additionalMatrices=TRUE,check = FALSE)

# 1. log(LFQ) data with imputed values 
data <- main(mdata) # head(data)

# 2. Gene/Protein names, p-value, FDR and fold change
annotations <- annotCols(mdata) # colnames(annotations)

# Select first annotation in Protein.ID "sp|P31943|HNRH1_HUMAN;sp|Q9NQA5|TRPV5_HUMAN"    
annotations$Protein.IDs <- sub(";.*","", annotations$Protein.IDs)

# Select Protein ID as HNRH1_HUMAN from sp|P31943|HNRH1_HUMAN;
annotations$Protein.IDs <- as.character(lapply(strsplit(as.character(annotations$Protein.IDs), split="\\|"),tail, n=1))

# Remove "_HUMAN" part HNRH1_HUMAN
annotations$Protein.IDs <- sub("_HUMAN","",annotations$Protein.IDs)

# Select Columns; write complete column name. 
annotations <- annotations[,c("Protein.IDs","Student.s.T.test.p.value....", "Student.s.T.test.Difference...")]

# Save the data 
write.table(annotations, file = "Volcano_plot_data.txt", col.names = TRUE, row.names = FALSE, quote = FALSE)

5. Data visualization

Volcano plot illustrates significantly differentially abundant proteins. The following plot is generated using GraphPad Prism.
volcano_plot

In addition to the above analytical considerations, good experimental design helps effectively identify true differences in the presence of variability from various sources and also avoids bias during data acquisition.

Further reading…
MaxQuant – Information and Tutorial
How to use Cloud for Proteomics Data Analysis
Data dependent vs Data independent proteomics

References

  1. RawMeat is a nice Thermo raw file diagnostic tool developed by the now defunct Vast Scientific 

  2. MaxQuant is a quantitative proteomics software package designed for analyzing large mass-spectrometric data sets 

  3. PTXQC, an R-based quality control pipeline called Proteomics Quality Control 

  4. Perseus is software package for shotgun proteomics data analyses