-
Notifications
You must be signed in to change notification settings - Fork 56
Develop
antagomir edited this page Oct 31, 2014
·
11 revisions
- Clone the git repository:
git clone [email protected]:microbiome/microbiome.git- Pull changes by others:
git pull-
Make your changes
-
Document, build, check and install the modified package to check its validity (see below)
-
Make pull request or push directly to the repository (for pushing you need permissions; please contact the admins):
git add new.files
git commit -a -m"my changes"
git push
See also source code at GitHub.
Instructions for building the R package tarball, assuming that the package structure is under the "pkg" directory in the working directory.
- Load the devtools R package (requires >=R-2.15)
library("devtools")- Build Roxygen documentation
document("pkg")- Validate the package
check("pkg")- Build the package
build("pkg")- Install the package
install("pkg")When ready: add, commit and push to git master repository.