Description Usage Arguments Value Note Author(s) See Also Examples
Compute the covariance matrix of the peptide abundances in the same connected component for given parameter values (beta
and tau
).
1 |
cc |
pre-processed connected component (list) |
beta |
model parameter ("weight" of protein abundance contribution) |
tau |
model parameter (variance of error term) |
Same list as cc
with an additional element named covU
This function is called by higher level functions (quantifyProteins
). Calling it directly is seldomly necessary.
Sarah Gerster sarah.gerster@isb-sib.ch
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | ## get data
data("leptoSRM")
## check input data
#dataChecked <-
dataChecked <-
checkInputData(scampiData=scampi(peptides=leptoSRMpeptides,
proteins=leptoSRMproteins,
edgespp=leptoSRMedgespp),
rescaling=FALSE)
## preprocess input data
tmpPrepro <- preprocessInputData(scampiData=dataChecked)
dataPrepro <- tmpPrepro[["dataPrepro"]]
myCCList <- tmpPrepro[["ccList"]]
rm(tmpPrepro)
## compute covariance matrices
myCCList <- lapply(myCCList, getCovU,
beta=0.2,
tau=0.5)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.