Skip to content

Building the Package Manually

Jake Bolewski edited this page Mar 22, 2018 · 9 revisions

All of these commands should be executed in the project root directory

To build the package:

R CMD INSTALL --no-multiarch --with-keep.source TileDB-R

To clean and build the package:

R CMD INSTALL --no-multiarch --with-keep.source TileDB-R

To build the package with a version of TileDB installed on a non-standard path:

R CMD INSTALL --no-multiarch --with-keep.source --configure-args='--with-tiledb=/path/to/tiledb/' TileDB-R

To run the package tests:

library(devtools) 
devtools::test()

To check the package:

library(devtools)
devtools::check()

Clone this wiki locally