Description Usage Arguments Value Examples
normalize_vsn
performs variance stabilizing transformation
using the vsn-package
.
1 | normalize_vsn(se)
|
se |
SummarizedExperiment,
Proteomics data (output from |
A normalized SummarizedExperiment object.
1 2 3 4 5 6 7 8 9 10 11 12 13 | # 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 and normalize
filt <- filter_missval(se, thr = 0)
norm <- normalize_vsn(filt)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.