https://github.com/ctlab/phantasus
Raw File
Tip revision: 3060d2b3ea45059741f3612cf8273a125315b3ac authored by Nitesh Turaga on 27 October 2020, 15:33:27 UTC
bump x.y.z version to odd y following creation of RELEASE_3_12 branch
Tip revision: 3060d2b
Rprofile
## Rprofile for OpenCPU cloud server.
## Example of Rprofile
#
# options(width=65, digits=5)
# options(show.signif.stars=FALSE)

library(phantasus)
cacheDir="/var/phantasus/cache"
preloadedDir="/var/phantasus/preloaded"
cacheDir <- normalizePath(cacheDir)
preloadedDir <- normalizePath(preloadedDir)
options(phantasusCacheDir = cacheDir,
            phantasusPreloadedDir = preloadedDir)
phantasus:::selfCheck()
phantasus:::annotationDBMeta(cacheDir)
phantasus:::FGSEAmeta(cacheDir)


back to top