Nothing
context("Parameter estimation and denoised data (spikes+batch)")
test_that("Estimates match the given seed (spikes+batch)", {
set.seed(9)
Data <- makeExampleBASiCS_Data(WithSpikes = TRUE,
WithBatch = TRUE)
# Fixing starting values
PriorParam <- BASiCS_PriorParam(Data, k = 12)
set.seed(2018)
Start <- BASiCS:::.BASiCS_MCMC_Start(
Data,
PriorParam,
WithSpikes = TRUE,
Regression = FALSE
)
# Running the samples
set.seed(18)
Chain <- run_MCMC(
Data,
N = 1000,
Thin = 10,
Burn = 500,
Regression = FALSE,
PrintProgress = FALSE,
Start = Start,
PriorParam = PriorParam
)
# Calculating a posterior summary
PostSummary <- Summary(Chain)
# Checking parameter names
ParamNames <- c("mu", "delta", "phi", "s", "nu", "theta")
expect_equal(names(Chain@parameters), ParamNames)
expect_equal(names(PostSummary@parameters), ParamNames)
# Check if parameter estimates match for the first 5 genes and cells
Mu <- c(6.219, 10.216, 2.837, 5.497, 19.963)
MuObs <- as.vector(round(displaySummaryBASiCS(PostSummary, "mu")[1:5, 1],3))
expect_equal(MuObs, Mu)
Delta <- c(0.959, 0.789, 1.315, 1.191, 0.680)
DeltaObs <- as.vector(round(displaySummaryBASiCS(PostSummary,
"delta")[1:5,1],3))
expect_equal(DeltaObs, Delta)
Phi <- c(0.898, 1.157, 1.125, 1.205, 0.661)
PhiObs <- as.vector(round(displaySummaryBASiCS(PostSummary, "phi")[1:5,1],3))
expect_equal(PhiObs, Phi)
S <- c(0.142, 0.171, 0.249, 1.234, 0.445)
SObs <- as.vector(round(displaySummaryBASiCS(PostSummary, "s")[1:5,1],3))
expect_equal(SObs, S)
Theta <- c(0.142, 0.898)
ThetaObs <- as.vector(round(displaySummaryBASiCS(PostSummary, "theta")[,1],3))
expect_equal(ThetaObs, Theta)
# Obtaining denoised counts
DC <- BASiCS_DenoisedCounts(Data, Chain)
# Checks for an arbitrary set of genes / cells
DCcheck0 <- c(0.000, 8.279, 24.837, 24.837, 49.675)
DCcheck <- as.vector(round(DC[1:5,1], 3))
expect_equal(DCcheck, DCcheck0)
# Obtaining denoised rates
DR <- BASiCS_DenoisedRates(Data, Chain)
# Checks for an arbitrary set of genes / cells
DRcheck0 <- c(10.164, 15.270, 1.830, 13.698, 8.589)
DRcheck <- as.vector(round(DR[10,1:5], 3))
expect_equal(DRcheck, DRcheck0)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.