Description Usage Arguments Value Author(s) See Also Examples
View source: R/BASiCS_LoadChain.R
Loads pre-computed MCMC chains generated by the
BASiCS_MCMC
function, creating
a BASiCS_Chain
object
1 | BASiCS_LoadChain(RunName = "", StoreDir = getwd(), StoreUpdatedChain = FALSE)
|
RunName |
String used to index '.Rds' file containing the MCMC chain
(produced by the |
StoreDir |
Directory where '.Rds' file is stored.
Default: |
StoreUpdatedChain |
Only required when the input files contain an
outdated version of a |
An object of class BASiCS_Chain
.
Catalina A. Vallejos cnvallej@uc.cl
Nils Eling eling@ebi.ac.uk
1 2 3 4 5 6 7 8 9 10 11 12 | Data <- makeExampleBASiCS_Data()
Chain <- BASiCS_MCMC(
Data,
N = 50,
Thin = 5,
Burn = 5,
Regression = FALSE,
StoreChains = TRUE,
StoreDir = tempdir(),
RunName = "Test"
)
ChainLoad <- BASiCS_LoadChain(RunName = "Test", StoreDir = tempdir())
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.