R package for augmented visualization of MaxQuant identification and label-free quantitation data in peptide-centric competitive activity-based protein profiling or other untargeted proteomics platforms.
How to install this package?
{r}
install.packages("devtools")
{r}
library(devtools)
{r}
install_github("devradiumking/maxabpp")
Usageinstall.packages("tidyverse")
install.packages("stringdist")
install.packages("stringr")
install.packages("ggplot2")
install.packages("ggrepel")
install.packages("RColorBrewer")
install.packages("grid")
library(tidyverse)
library(stringdist)
library(stringr)
library(ggplot2)
library(ggforce)
library(ggrepel)
library(grid)
library(RColorBrewer)
library(plyr)
output1 <- pairwise_LFQ(
raw = read.delim("modificationSpecificPeptides.txt", header = TRUE, sep = "\t"),
metadata = read.delim("metadata.txt", header=TRUE, sep = "\t"),
name_probe_mod = c("Mod"),
max_each_mod = 1,
max_total_mods = 1,
quantitation_level = "peptide",
background_check = FALSE,
normalize_to = "sum_all")
Note: Multiple modification forms of a single chemical probe can be used as name_probe_mod = c("Mod1", "Mod2"). For instance, original (+ probe mass) and hydrolyzed (+ probe mass + 18 Da). These should be previously set on MaxQuant.
output2 <- append_ec_sites(output1, quantitation_level = "peptide")
plot_volcano(output2, "InhibitorHigh _vs_ InhibitorLow _log2fold_change", "InhibitorHigh _vs_ InhibitorLow _-log10p-value", xlim = c(-6, 2), ylim = c(0, 5), "Gene Names", 1, 0, "InhibitorName/ProbeName")
multi_volcano_plots(raw = raw, meta = meta, name_probe_mod = c("Mod"),
max_each_mod = 1, max_total_mods = 1, quantitation_level = "peptide" , background_check = FALSE,
xlim = c(-10, 3), ylim = c(0, 5), label_col_name = "Gene Names", pCutoff = 0.05, FCcutoff = 0)
setList <- make_proteinGroups_setList(folderName = "proteinGroups")
plot_Max_Venn(Max_Venn(setList, IndividualAnalysis = FALSE))
plot_target(make_tiers(setList))
maxabpp was developed at the Yao Lab at Chemistry Department, University of Connecticut
If you use this package please cite as:
Lei Wang and Xudong Yao (2020). maxabpp: R package for augmented visualization of peptide-centric competitive activity-based protein profiling data from MaxQuant protein identification and label-free quantitation output. package version 2.5. https://github.com/devradiumking/maxabpp
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.