develop
branch of the repository, rather than master
, if possible.Attempt to follow these style guides, by priority:
Please adhere to these guidelines, in particular:
<-
and not =
for assignment.if
/then
statements using opening and closing brackets ({
, }
).else
declarations should be on the same line as the closing bracket.<-
), brackets ({
), and comma delimiters (e.g. c("foo", "bar")
not c("foo","bar")
.Run these commands prior to a pull request:
devtools::document()
devtools::run_examples()
devtools::test()
devtools::check()
BiocCheck::BiocCheck(getwd())
lintr::lint_package()
covr::report()
unlink("docs", recursive = TRUE)
pkgdown::build_site()