Description Usage Arguments Value Author(s) Examples
View source: R/srcLineagePulse_getFits.R
Return drop-out model fits per gene and cell as matrix for chosen models.
1 | getFitsDropout(lsMuModel, lsDropModel, vecGeneIDs = NULL)
|
lsMuModel |
(list) Object containing description of gene-wise mean parameter models. |
lsDropModel |
(list) Object containing description of cell-wise drop-out parameter models. |
vecGeneIDs |
(vector of strings) [Default NULL] Gene IDs for which posteriors of drop-out are to be computed. |
(numeric matrix genes x cells) Drop-out rate fits.
David Sebastian Fischer
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | lsSimulatedData <- simulateContinuousDataSet(
scaNCells = 20,
scaNConst = 2,
scaNLin = 2,
scaNImp = 2,
scaMumax = 100,
scaSDMuAmplitude = 3,
vecNormConstExternal=NULL,
vecDispExternal=rep(20, 6),
vecGeneWiseDropoutRates = rep(0.1, 6))
objLP <- runLineagePulse(
counts = lsSimulatedData$counts,
dfAnnotation = lsSimulatedData$annot,
strMuModel = "impulse")
# Get drop-out rate fits on alternative model:
# Use H1 model fits.
vecDropoutFits <- getFitsDropout(
lsMuModel = lsMuModelH1(objLP),
lsDropModel = lsDropModel(objLP),
vecGeneIDs = rownames(lsSimulatedData$counts)[1])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.