Description Usage Arguments Value Examples
estimateAbundance
takes as input the summarized log2-intensities for
each PTM site, performs statistical modeling for the abundance of the site,
and returns the estimates of model parameters for all sites in all
experimental conditions.
1 | estimateAbundance(df, fctBatch = FALSE, perProtein = FALSE)
|
df |
A data frame with columns of |
fctBatch |
A logical. |
perProtein |
A logical. |
A list of two elements named PTM
and PROTEIN
. The
PTM
list has four elements: protein
(a string vector of
protein names), site
(a string vector of PTM sites), param
(a list of model parameter estimates for each site), and df
(a
numeric vector of degrees of freedom for each model). The PROTEIN
list includes all as in PTM
, except site
.
1 2 3 4 5 6 7 8 9 10 | sim <- PTMsimulateExperiment(
nGroup=2, nRep=2, nProtein=1, nSite=1, nFeature=5,
logAbundance=list(
PTM=list(mu=25, delta=c(0, 1), sRep=0.2, sPeak=0.05),
PROTEIN=list(mu=25, delta=c(0, 1), sRep=0.2, sPeak=0.05)
)
)
s <- PTMsummarize(sim)
estimateAbundance(s[["PTM"]])
estimateAbundance(s[["PROTEIN"]], perProtein=TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.