Description Usage Arguments Value Examples
get_results
generates a results table from a proteomics dataset
on which differential enrichment analysis was performed.
1 | get_results(dep)
|
dep |
SummarizedExperiment,
Data object for which differentially enriched proteins are annotated
(output from |
A data.frame object containing all results variables from the performed analysis.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | # 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, normalize and impute missing values
filt <- filter_missval(se, thr = 0)
norm <- normalize_vsn(filt)
imputed <- impute(norm, fun = "MinProb", q = 0.01)
# Test for differentially expressed proteins
diff <- test_diff(imputed, "control", "Ctrl")
dep <- add_rejections(diff, alpha = 0.05, lfc = 1)
# Get results
results <- get_results(dep)
colnames(results)
significant_proteins <- results[results$significant,]
nrow(significant_proteins)
head(significant_proteins)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.