This lesson is still being designed and assembled (Pre-Alpha version)

Introduction to quantitative proteomics data

Overview

Teaching: 15 min
Exercises: 0 min
Questions
  • What data do we have?

  • What analyses can we apply?

  • How can we check the data throughout the analysis?

Objectives
  • Understand proteomics data set.

  • Understand what data cleaning we need to do.

  • Understand what data analysis we can do.

Data

Read data

To read and instepct the peptides.txt file we will use the package readr, which is bundled within the tidyverse package. Please load the tidyverse if not already done. :

library("tidyverse")
f <- readr::read_delim("https://raw.githubusercontent.com/lgatto/bioc-ms-prot/master/data/cptac_peptides.txt",delim="\t")

## explore
head(f)

Quantitative information

Quantitative information is contained in the columns that have “Intensity” tag. We can see which columns have quantitative information.

(i <- grep("Intensity.", names(f))) # 56 57 58 59 60 61

Your turn

Exercise

Subtract peptide names and intensity values from f.

Solution

f[,c(1,i)]

Key Points

  • It’s important to understand your proteomics data.