Description Usage Arguments Details Value Examples
View source: R/tpptrTidyUpESets.R
Convert list of expressionSets (intermediate output of several TPP-TR functions) to tidy tables.
1 | tpptrTidyUpESets(tppESetList, returnType = "exprs")
|
tppESetList |
A list of expressionSets, returned by most TPP-TR functions. |
returnType |
A string with two possible values: "exprs", "featureData". |
expressionSet lists are for example produced by
tpptrImport
, tpptrNormalize
,
tpptrCurveFit
.
Either the fold changes per protein across all experiments
(if returnType = "exprs"
), or the
additional annotation per protein and experiment (if returnType = "featureData"
). For example, the
peptide counts per identified protein can be found here.
1 2 3 4 5 | data(hdacTR_smallExample)
tpptrData <- tpptrImport(configTable = hdacTR_config, data = hdacTR_data)
concentrations <- tpptrTidyUpESets(tpptrData)
additionalInfos <- tpptrTidyUpESets(tpptrData, returnType = "featureData")
summary(concentrations)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.