Description Usage Arguments Value Examples
PTMestimate
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. If protein log2-intensities are availble, the same estimation
procedure is applied to each protein as well.
1 | PTMestimate(data, fctBatch = FALSE)
|
data |
A list of two data frames named |
fctBatch |
A logical defining the handling of batch effect for all data
or two logicals for the |
A list of two lists 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 | 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)
PTMestimate(s)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.