Hey Fellow Rstaters,
I'm working on a script that creates a package in the current directory (using pdInfoBuilder from BioConductor), and I'd like to install it while the script is running. install.packages()
with repo=NULL seems like an obvious choice, but this seems to only except package directories tarballed and gzipped. Is there a way I can override this, since the create.pkg()
function doesn't create a *.tar.gz? Currently I am using:
R CMD INSTALL package.name
Thanks, Vince