Description Usage Arguments Value Examples
make_se
creates a SummarizedExperiment object
based on two data.frames: the protein table and experimental design.
1 | make_se(proteins_unique, columns, expdesign)
|
proteins_unique |
Data.frame,
Protein table with unique names annotated in the 'name' column
(output from |
columns |
Integer vector, Column numbers indicating the columns containing the assay data. |
expdesign |
Data.frame,
Experimental design with 'label', 'condition'
and 'replicate' information.
See |
A SummarizedExperiment object with log2-transformed values.
1 2 3 4 5 6 7 8 9 | # 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.