Description Usage Arguments Value Examples
View source: R/wrapper_functions.R
process
performs data processing on a SummarizedExperiment object.
It (1) filters a proteomics dataset based on missing values,
(2) applies variance stabilizing normalization and
(3) imputes eventual remaining missing values.
1 2 |
se |
SummarizedExperiment,
Proteomics data with unique names and identifiers
annotated in 'name' and 'ID' columns.
The appropriate columns and objects can be generated
using the wrapper import functions |
thr |
Integer(1), Sets the threshold for the allowed number of missing values per condition. |
fun |
"man", "bpca", "knn", "QRILC", "MLE", "MinDet",
"MinProb", "min", "zero", "mixed" or "nbavg",
Function used for data imputation based on |
... |
Additional arguments for imputation functions as depicted in
|
A filtered, normalized and imputed SummarizedExperiment object.
1 2 3 4 5 6 7 8 9 | # Load datasets
data <- UbiLength
exp_design <- UbiLength_ExpDesign
# Import data
se <- import_MaxQuant(data, exp_design)
# Process data
processed <- process(se)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.