Description Usage Arguments Value Class description Accessors Examples
Constructor function for the SilacPeptideExperiment class object.
1 2 3 4 5 6 7 8 9 |
assays |
A named |
rowData |
A |
colData |
A |
conditionCol |
A |
timeCol |
A |
proteinCol |
A |
metadata |
A |
An object of class SilacPeptideExperiment
.
See SilacPeptideExperiment-class for details.
See SilacProteinPeptideExperiment-accessors for details.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ## assays
assays_peptide <- list(expression = matrix(1:15, ncol = 3))
## colData
colData <- data.frame(sample = c('A1', 'A2', 'A3'),
condition = c('A', 'A', 'A'),
time = c(1, 2, 3))
## rowData
rowData_peptide <- data.frame(pept_id = letters[1:5],
prot_id = c('A', 'A', 'B', 'C', 'C'))
## construct the ProteinExperiment
peptExp <- SilacPeptideExperiment(assays = assays_peptide,
rowData = rowData_peptide,
colData = colData,
conditionCol = 'condition',
timeCol = 'time')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.