Description Usage Arguments Value Examples
plot_stoichiometry
plots a barplot of the
relative stoichiometries.
1 | plot_stoichiometry(protein_stoichiometry, thr = 0.01, max_y = NULL)
|
protein_stoichiometry |
Data.frame,
Stoichiometry table generated by |
thr |
Numerical(1), The stoichiometry threshold above which proteins will be plotted. |
max_y |
Numerical(1), The maximum scale of the y-axis. |
A barplot (generated by ggplot
).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | # load data
proteins <- GFPip
proteins <- data_unique <- make_unique(proteins, 'Gene.names', 'Protein.IDs')
exp_design <- GFPip_ExpDesign
peptides <- GFPip_pep
# Test for differential enriched proteins
se <- import_MaxQuant(proteins, exp_design,
filter = c("Reverse", "Contaminant"))
processed <- process(se, fun = "MinProb")
dep <- analyze_dep(processed, 'control', 'WT', lfc = 4.5)
# Merge iBAQ intensities of proteins that have shared peptides
ibaq <- merge_ibaq(data_unique, peptides)
# Calculate relative stoichiometry versus 'Suz12' in the 'GFP_vs_WT' contrast
stoi <- get_stoichiometry(dep, ibaq, contrast = 'GFP_vs_WT', bait = 'Suz12')
# Plot stoichiometry
plot_stoichiometry(stoi)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.