-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
installing a local package with BiocManager? #88
Comments
I would rather document an alternative approach, since installing locally is not consistent with bioconductor best practices. PR welcome but I won't write one. |
How do you install and test when developing locally - with |
My gut reaction here is that the best practice is for a package to start its life in github. Then BiocManager can install it. |
Personally I use |
Good to know; my thought is that version control should commence as soon as possible. |
Unless I've missed something, you have to use an alternative like
devtools::install('.', dependencies=TRUE, build_vignettes=TRUE, repos = BiocManager::repositories())
to install a local package normally or in Dockerfiles, taking us away from BiocManager as our one-and-only package manager. Could you either implement a local package installer, or document the recommended approach? Here's an example in the wild that could be a recommended approach. Note, it does not use the github remotes installation because it is meant to also run from alternative git branches.https://github.com/seandavi/BuildABiocWorkshop/blob/3161063ee879720f866ba109048247906dea5a93/Dockerfile#L9
The text was updated successfully, but these errors were encountered: