plot_detect: Visualize intensities of proteins with missing values

Description Usage Arguments Value Examples

View source: R/plot_functions_QC.R

Description

plot_detect generates density and CumSum plots of protein intensities with and without missing values

Usage

1

Arguments

se

SummarizedExperiment, Data object with missing values.

Value

Density and CumSum plots of intensities of proteins with and without missing values (generated by ggplot).

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
# Load example
data <- UbiLength
data <- data[data$Reverse != "+" & data$Potential.contaminant != "+",]
data_unique <- make_unique(data, "Gene.names", "Protein.IDs", delim = ";")

# Make SummarizedExperiment
columns <- grep("LFQ.", colnames(data_unique))
exp_design <- UbiLength_ExpDesign
se <- make_se(data_unique, columns, exp_design)

# Filter
filt <- filter_missval(se, thr = 0)

# Plot intensities of proteins with missing values
plot_detect(filt)

arnesmits/DEP documentation built on Aug. 7, 2019, 10:44 a.m.