Skip to content

Commit 0a7204b

Browse files
c-mertesdrewjbeh
andauthored
Fixed drop parameter in generic "[" function and other small bug fixes (#63)
This is a backport to release version `1.14.0` of #62. Fixes in this commit: * Set default for `drop` to `FALSE` in `[` generic function and ignore this argument * Extended testing to test for the `drop` argument. * fix GitHub Action again * update and align FRASER documentation * Update RoxyGen documentation to 7.3.1 * Add ORCID ids to DESCRIPTION * fixed BugReports in DESCRIPTION * remove CCX11 flags from Makevars --------- Co-authored-by: Christian Mertes <[email protected]> Co-authored-by: Drew Behrens <[email protected]>
1 parent 3cfde73 commit 0a7204b

15 files changed

+411
-239
lines changed

.github/helperScripts/setupEnv.R

-45
This file was deleted.

.github/workflows/check-bioc.yml

+333
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,333 @@
1+
## Read more about GitHub actions the features of this GitHub Actions workflow
2+
## at https://lcolladotor.github.io/biocthis/articles/biocthis.html#use_bioc_github_action
3+
##
4+
## For more details, check the biocthis developer notes vignette at
5+
## https://lcolladotor.github.io/biocthis/articles/biocthis_dev_notes.html
6+
##
7+
## You can add this workflow to other packages using:
8+
## > biocthis::use_bioc_github_action()
9+
##
10+
## Using GitHub Actions exposes you to many details about how R packages are
11+
## compiled and installed in several operating system.s
12+
### If you need help, please follow the steps listed at
13+
## https://github.com/r-lib/actions#where-to-find-help
14+
##
15+
## If you found an issue specific to biocthis's GHA workflow, please report it
16+
## with the information that will make it easier for others to help you.
17+
## Thank you!
18+
19+
## Acronyms:
20+
## * GHA: GitHub Action
21+
## * OS: operating system
22+
23+
on:
24+
push:
25+
pull_request:
26+
27+
name: R-CMD-check-bioc
28+
29+
## These environment variables control whether to run GHA code later on that is
30+
## specific to testthat, covr, and pkgdown.
31+
##
32+
## If you need to clear the cache of packages, update the number inside
33+
## cache-version as discussed at https://github.com/r-lib/actions/issues/86.
34+
## Note that you can always run a GHA test without the cache by using the word
35+
## "/nocache" in the commit message.
36+
env:
37+
has_testthat: 'true'
38+
run_covr: 'true'
39+
run_pkgdown: 'false'
40+
has_RUnit: 'false'
41+
cache-version: 'cache-v1'
42+
run_docker: 'false'
43+
44+
jobs:
45+
build-check:
46+
runs-on: ${{ matrix.config.os }}
47+
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
48+
container: ${{ matrix.config.cont }}
49+
## Environment variables unique to this job.
50+
51+
strategy:
52+
fail-fast: false
53+
matrix:
54+
config:
55+
- { os: ubuntu-latest, r: '4.3', bioc: '3.18', cont: "bioconductor/bioconductor_docker:RELEASE_3_18", rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest" }
56+
- { os: ubuntu-latest, r: 'next', bioc: '3.18', cont: "bioconductor/bioconductor_docker:RELEASE_3_18", rspm: "https://packagemanager.rstudio.com/cran/__linux__/focal/latest" }
57+
- { os: macOS-latest, r: '4.3', bioc: '3.18'}
58+
- { os: windows-latest, r: '4.3', bioc: '3.18'}
59+
## Check https://github.com/r-lib/actions/tree/master/examples
60+
## for examples using the http-user-agent
61+
env:
62+
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
63+
RSPM: ${{ matrix.config.rspm }}
64+
NOT_CRAN: true
65+
TZ: UTC
66+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
67+
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
68+
69+
steps:
70+
71+
## Set the R library to the directory matching the
72+
## R packages cache step further below when running on Docker (Linux).
73+
- name: Set R Library home on Linux
74+
if: runner.os == 'Linux'
75+
run: |
76+
mkdir /__w/_temp/Library
77+
echo ".libPaths('/__w/_temp/Library')" > ~/.Rprofile
78+
79+
## Most of these steps are the same as the ones in
80+
## https://github.com/r-lib/actions/blob/master/examples/check-standard.yaml
81+
## If they update their steps, we will also need to update ours.
82+
- name: Checkout Repository
83+
uses: actions/checkout@v3
84+
85+
## R is already included in the Bioconductor docker images
86+
- name: Setup R from r-lib
87+
if: runner.os != 'Linux'
88+
uses: r-lib/actions/setup-r@v2
89+
with:
90+
r-version: ${{ matrix.config.r }}
91+
http-user-agent: ${{ matrix.config.http-user-agent }}
92+
93+
## pandoc is already included in the Bioconductor docker images
94+
- name: Setup pandoc from r-lib
95+
if: runner.os != 'Linux'
96+
uses: r-lib/actions/setup-pandoc@v2
97+
98+
- name: Query dependencies
99+
run: |
100+
install.packages('remotes')
101+
saveRDS(remotes::dev_package_deps(dependencies = TRUE), ".github/depends.Rds", version = 2)
102+
shell: Rscript {0}
103+
104+
- name: Restore R package cache
105+
if: "!contains(github.event.head_commit.message, '/nocache') && runner.os != 'Linux'"
106+
uses: actions/cache@v3
107+
with:
108+
path: ${{ env.R_LIBS_USER }}
109+
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_16-r-4.2-${{ hashFiles('.github/depends.Rds') }}
110+
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_16-r-4.2-
111+
112+
- name: Cache R packages on Linux
113+
if: "!contains(github.event.head_commit.message, '/nocache') && runner.os == 'Linux' "
114+
uses: actions/cache@v3
115+
with:
116+
path: /home/runner/work/_temp/Library
117+
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_16-r-4.2-${{ hashFiles('.github/depends.Rds') }}
118+
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_16-r-4.2-
119+
120+
- name: Install Linux system dependencies
121+
if: runner.os == 'Linux'
122+
run: |
123+
sysreqs=$(Rscript -e 'cat("apt-get update -y && apt-get install -y", paste(gsub("apt-get install -y ", "", remotes::system_requirements("ubuntu", "20.04")), collapse = " "))')
124+
echo $sysreqs
125+
sudo -s eval "$sysreqs"
126+
127+
- name: Install macOS system dependencies
128+
if: matrix.config.os == 'macOS-latest'
129+
run: |
130+
## Enable installing XML from source if needed
131+
brew install libxml2
132+
echo "XML_CONFIG=/usr/local/opt/libxml2/bin/xml2-config" >> $GITHUB_ENV
133+
134+
## Required to install magick as noted at
135+
## https://github.com/r-lib/usethis/commit/f1f1e0d10c1ebc75fd4c18fa7e2de4551fd9978f#diff-9bfee71065492f63457918efcd912cf2
136+
brew install imagemagick@6
137+
138+
## For textshaping, required by ragg, and required by pkgdown
139+
brew install harfbuzz fribidi
140+
141+
## For installing usethis's dependency gert
142+
brew install libgit2
143+
144+
## Required for tcltk
145+
brew install xquartz --cask
146+
147+
- name: Install Windows system dependencies
148+
if: runner.os == 'Windows'
149+
run: |
150+
## Edit below if you have any Windows system dependencies
151+
shell: Rscript {0}
152+
153+
- name: Init tinytex
154+
uses: r-lib/actions/setup-tinytex@v2
155+
156+
- name: Install tinytex packages
157+
run: |
158+
system("tlmgr --version")
159+
install.packages("tinytex")
160+
tinytex::tlmgr_install(pkgs = c("bera", "caption", "changepage", "enumitem", "everysel", "fancyhdr", "footmisc", "grfext", "index", "marginfix", "mathtools",
161+
"ms", "nowidow", "parnotes", "parskip", "placeins", "preprint", "ragged2e", "side", "soul", "titlesec", "tocbibind", "xstring"))
162+
shell: Rscript {0}
163+
164+
- name: Install BiocManager
165+
run: |
166+
message(paste('****', Sys.time(), 'installing BiocManager ****'))
167+
remotes::install_cran("BiocManager")
168+
shell: Rscript {0}
169+
170+
- name: Set BiocVersion
171+
run: |
172+
BiocManager::install(version = "${{ matrix.config.bioc }}", ask = FALSE, force = TRUE)
173+
shell: Rscript {0}
174+
175+
- name: Install dependencies pass 1
176+
run: |
177+
## Try installing the package dependencies in steps. First the local
178+
## dependencies, then any remaining dependencies to avoid the
179+
## issues described at
180+
## https://stat.ethz.ch/pipermail/bioc-devel/2020-April/016675.html
181+
## https://github.com/r-lib/remotes/issues/296
182+
## Ideally, all dependencies should get installed in the first pass.
183+
184+
## Set the repos source depending on the OS
185+
## Alternatively use https://storage.googleapis.com/bioconductor_docker/packages/
186+
## though based on https://bit.ly/bioc2021-package-binaries
187+
## the Azure link will be the main one going forward.
188+
gha_repos <- if(
189+
.Platform$OS.type == "unix" && Sys.info()["sysname"] != "Darwin"
190+
) c(
191+
"AnVIL" = "https://bioconductordocker.blob.core.windows.net/packages/3.16/bioc",
192+
BiocManager::repositories()
193+
) else BiocManager::repositories()
194+
195+
## For running the checks
196+
message(paste('****', Sys.time(), 'installing rcmdcheck and BiocCheck ****'))
197+
install.packages(c("rcmdcheck", "BiocCheck"), repos = gha_repos)
198+
199+
## Pass #1 at installing dependencies
200+
## This pass uses AnVIL-powered fast binaries
201+
## details at https://github.com/nturaga/bioc2021-bioconductor-binaries
202+
## The speed gains only apply to the docker builds.
203+
message(paste('****', Sys.time(), 'pass number 1 at installing dependencies: local dependencies ****'))
204+
remotes::install_local(dependencies = TRUE, repos = gha_repos, build_vignettes = FALSE, upgrade = TRUE)
205+
continue-on-error: true
206+
shell: Rscript {0}
207+
208+
- name: Install dependencies pass 2
209+
run: |
210+
## Pass #2 at installing dependencies
211+
## This pass does not use AnVIL and will thus update any packages
212+
## that have seen been updated in Bioconductor
213+
message(paste('****', Sys.time(), 'pass number 2 at installing dependencies: any remaining dependencies ****'))
214+
remotes::install_local(dependencies = TRUE, repos = BiocManager::repositories(), build_vignettes = TRUE, upgrade = TRUE, force = TRUE)
215+
shell: Rscript {0}
216+
217+
- name: Install BiocGenerics
218+
if: env.has_RUnit == 'true'
219+
run: |
220+
## Install BiocGenerics
221+
BiocManager::install("BiocGenerics")
222+
shell: Rscript {0}
223+
224+
- name: Install covr
225+
if: github.ref == 'refs/heads/master' && env.run_covr == 'true' && runner.os == 'Linux'
226+
run: |
227+
remotes::install_cran("covr")
228+
shell: Rscript {0}
229+
230+
- name: Install pkgdown
231+
if: github.ref == 'refs/heads/master' && env.run_pkgdown == 'true' && runner.os == 'Linux'
232+
run: |
233+
remotes::install_cran("pkgdown")
234+
shell: Rscript {0}
235+
236+
- name: Session info
237+
run: |
238+
options(width = 100)
239+
pkgs <- installed.packages()[, "Package"]
240+
sessioninfo::session_info(pkgs, include_base = TRUE)
241+
shell: Rscript {0}
242+
243+
- name: Run CMD check
244+
env:
245+
_R_CHECK_CRAN_INCOMING_: false
246+
DISPLAY: 99.0
247+
run: |
248+
options(crayon.enabled = TRUE)
249+
rcmdcheck::rcmdcheck(
250+
args = c("--no-manual", "--no-vignettes", "--timings"),
251+
build_args = c("--no-manual", "--keep-empty-dirs", "--no-resave-data"),
252+
error_on = "warning",
253+
check_dir = "check"
254+
)
255+
shell: Rscript {0}
256+
257+
## Might need an to add this to the if: && runner.os == 'Linux'
258+
- name: Reveal testthat details
259+
if: env.has_testthat == 'true'
260+
run: find . -name testthat.Rout -exec cat '{}' ';'
261+
262+
- name: Run RUnit tests
263+
if: env.has_RUnit == 'true'
264+
run: |
265+
BiocGenerics:::testPackage()
266+
shell: Rscript {0}
267+
268+
- name: Run BiocCheck
269+
env:
270+
DISPLAY: 99.0
271+
run: |
272+
BiocCheck::BiocCheck(
273+
dir('check', 'tar.gz$', full.names = TRUE),
274+
`quit-with-status` = TRUE,
275+
`no-check-R-ver` = TRUE,
276+
`no-check-bioc-help` = TRUE
277+
)
278+
shell: Rscript {0}
279+
280+
- name: Test coverage
281+
if: github.ref == 'refs/heads/master' && env.run_covr == 'true' && runner.os == 'Linux'
282+
run: |
283+
covr::codecov()
284+
shell: Rscript {0}
285+
286+
- name: Install package
287+
if: github.ref == 'refs/heads/master' && env.run_pkgdown == 'true' && runner.os == 'Linux'
288+
run: R CMD INSTALL .
289+
290+
- name: Build pkgdown site
291+
if: github.ref == 'refs/heads/master' && env.run_pkgdown == 'true' && runner.os == 'Linux'
292+
run: pkgdown::build_site_github_pages(new_process = FALSE, install = FALSE)
293+
shell: Rscript {0}
294+
## Note that you need to run pkgdown::deploy_to_branch(new_process = FALSE)
295+
## at least one locally before this will work. This creates the gh-pages
296+
## branch (erasing anything you haven't version controlled!) and
297+
## makes the git history recognizable by pkgdown.
298+
299+
- name: Install deploy dependencies
300+
if: github.ref == 'refs/heads/master' && env.run_pkgdown == 'true' && runner.os == 'Linux'
301+
run: |
302+
apt-get update && apt-get -y install rsync
303+
304+
- name: Deploy pkgdown site to GitHub pages 🚀
305+
if: github.ref == 'refs/heads/master' && env.run_pkgdown == 'true' && runner.os == 'Linux'
306+
uses: JamesIves/github-pages-deploy-action@releases/v4
307+
with:
308+
clean: false
309+
branch: gh-pages
310+
folder: docs
311+
312+
- name: Upload check results
313+
if: failure()
314+
uses: actions/upload-artifact@master
315+
with:
316+
name: ${{ runner.os }}-biocversion-RELEASE_3_16-r-4.2-results
317+
path: check
318+
319+
## Note that DOCKER_PASSWORD is really a token for your dockerhub
320+
## account, not your actual dockerhub account password.
321+
## This comes from
322+
## https://seandavi.github.io/BuildABiocWorkshop/articles/HOWTO_BUILD_WORKSHOP.html#6-add-secrets-to-github-repo
323+
## Check https://github.com/docker/build-push-action/tree/releases/v1
324+
## for more details.
325+
- uses: docker/build-push-action@v1
326+
if: "!contains(github.event.head_commit.message, '/nodocker') && env.run_docker == 'true' && runner.os == 'Linux' "
327+
with:
328+
username: ${{ secrets.DOCKER_USERNAME }}
329+
password: ${{ secrets.DOCKER_PASSWORD }}
330+
repository: gagneurlab/fraser
331+
tag_with_ref: true
332+
tag_with_sha: true
333+
tags: latest

0 commit comments

Comments
 (0)