| BASiCS_LoadChain {BASiCS} | R Documentation |
BASiCS_MCMC functionLoads pre-computed MCMC chains generated by the
BASiCS_MCMC function, creating
a BASiCS_Chain object
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
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())