Prerequisites:

You will have to install PAFcontaminants from GitHub:

library(devtools)
install_github("UNIL-PAF/PAFcontaminants", build_vignettes = TRUE)

MaxQuant provides us with a file (proteinGroups.txt) which contains information about the theoretical masses of proteins and how abbundant peptides from those proteins are found in slices from one dimensional gels. This information can be used to compute a approximation of which masses correspond to each slice.

# First the data is loaded:
pg_path <- "proteinGroups.txt"
pg <- load_MQ(pg_path)

# The data is filtered and masses are fitted to the slices
mass_fit <- filter_and_fit(pg)

# Generate a plot showing the final mass fit:
plot_fit(pg, mass_fit)


UNIL-PAF/pumbaR documentation built on June 9, 2022, 6:31 p.m.