Skip to content

Commit 512e2f3

Browse files
committed
Initial commit
0 parents  commit 512e2f3

File tree

245 files changed

+78377
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

245 files changed

+78377
-0
lines changed

.github/workflows/R-CMD-check.yaml

+112
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
on:
2+
push:
3+
branches:
4+
- master
5+
pull_request:
6+
branches:
7+
- master
8+
9+
name: R-CMD-check
10+
11+
jobs:
12+
R-CMD-check:
13+
runs-on: ${{ matrix.config.os }}
14+
15+
name: ${{ matrix.config.os }} (${{ matrix.config.r }})
16+
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
config:
21+
- {os: macOS-latest, r: 'release'}
22+
- {os: macOS-latest, r: 'oldrel'}
23+
- {os: windows-latest, r: 'release'}
24+
- {os: ubuntu-16.04, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
25+
- {os: ubuntu-16.04, r: 'oldrel', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
26+
27+
28+
env:
29+
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
30+
RSPM: ${{ matrix.config.rspm }}
31+
GITHUB_TOKEN: ${{ secrets.GHTOKEN2 }}
32+
GITHUB_PAT: ${{ secrets.GHTOKEN2 }}
33+
34+
steps:
35+
- uses: actions/checkout@v2
36+
37+
- uses: r-lib/actions/setup-r@master
38+
with:
39+
r-version: ${{ matrix.config.r }}
40+
41+
- uses: r-lib/actions/setup-pandoc@master
42+
43+
- name: Query dependencies
44+
run: |
45+
install.packages('remotes')
46+
saveRDS(remotes::dev_package_deps("MyCoursePackage/",dependencies = TRUE), ".github/depends.Rds", version = 2)
47+
writeLines(sprintf("R-%i.%i", getRversion()$major, getRversion()$minor), ".github/R-version")
48+
remotes::install_cran("BiocManager")
49+
remotes::install_cran("devtools")
50+
shell: Rscript {0}
51+
52+
- name: Cache R packages
53+
if: runner.os != 'Windows'
54+
uses: actions/cache@v1
55+
with:
56+
path: ${{ env.R_LIBS_USER }}
57+
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }}
58+
restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-
59+
60+
- name: Install System Dependencies
61+
if: runner.os == 'Linux'
62+
run: |
63+
sudo apt-get update -y
64+
sudo apt-get install -y glpk-utils
65+
sudo apt-get install -y libcurl4-openssl-dev
66+
shell: bash {0}
67+
68+
69+
- name: Install dependencies
70+
run: |
71+
## Try installing the package dependencies in steps. First the local
72+
## dependencies, then any remaining dependencies to avoid the
73+
## issues described at
74+
## https://stat.ethz.ch/pipermail/bioc-devel/2020-April/016675.html
75+
## https://github.com/r-lib/remotes/issues/296
76+
## Ideally, all dependencies should get installed in the first pass.
77+
## Pass #1 at installing dependencies
78+
message(paste('****', Sys.time(), 'pass number 1 at installing dependencies: local dependencies ****'))
79+
local_deps <- remotes::local_package_deps("MyCoursePackage/",dependencies = TRUE)
80+
deps <- remotes::dev_package_deps("MyCoursePackage/",dependencies = TRUE, repos = BiocManager::repositories())
81+
BiocManager::install(local_deps[local_deps %in% deps$package[deps$diff != 0]])
82+
## Pass #2 at installing dependencies
83+
message(paste('****', Sys.time(), 'pass number 2 at installing dependencies: any remaining dependencies ****'))
84+
deps <- remotes::dev_package_deps("MyCoursePackage/",dependencies = TRUE, repos = BiocManager::repositories())
85+
BiocManager::install(deps$package[deps$diff != 0])
86+
## For running the checks
87+
message(paste('****', Sys.time(), 'installing rcmdcheck and BiocCheck ****'))
88+
remotes::install_cran("rcmdcheck")
89+
BiocManager::install("BiocCheck")
90+
BiocManager::install("rmarkdown")
91+
BiocManager::install("RockefellerUniversity/compileCourses",subdir="compileCourses")
92+
BiocManager::install("RockefellerUniversity/Herper")
93+
shell: Rscript {0}
94+
95+
- name: Session info
96+
run: |
97+
options(width = 100)
98+
pkgs <- installed.packages()[, "Package"]
99+
sessioninfo::session_info(pkgs, include_base = TRUE)
100+
shell: Rscript {0}
101+
102+
- name: Install package
103+
if: github.ref == 'refs/heads/master'
104+
run: |
105+
devtools::install("MyCoursePackage/",dependencies = TRUE,quick = TRUE)
106+
shell: Rscript {0}
107+
108+
- name: CompileCourse
109+
run: |
110+
require(compileCourses)
111+
compileCourses::compileSingleCourseMaterial(repo="RockefellerUniversity",subdir="MyCoursePackage",branch="master")
112+
shell: Rscript {0}

.github/workflows/selfTest.yml

+245
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,245 @@
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+
## or
10+
## > usethis::use_github_action("check-bioc", "https://bit.ly/biocthis_gha", "check-bioc.yml")
11+
## without having to install biocthis.
12+
##
13+
## Using GitHub Actions exposes you to many details about how R packages are
14+
## compiled and installed in several operating system.s
15+
### If you need help, please follow the steps listed at
16+
## https://github.com/r-lib/actions#where-to-find-help
17+
##
18+
## If you found an issue specific to biocthis's GHA workflow, please report it
19+
## with the information that will make it easier for others to help you.
20+
## Thank you!
21+
22+
23+
24+
## Acronyms:
25+
## * GHA: GitHub Action
26+
## * OS: operating system
27+
28+
## Specify which branches you want this GHA to run on.
29+
## Bioconductor uses branches such as master (bioc-devel) and RELEASE_* like
30+
## RELEASE_3_10. For more details check
31+
## http://bioconductor.org/developers/how-to/git/
32+
on:
33+
push:
34+
branches:
35+
- master
36+
- 'RELEASE_*'
37+
pull_request:
38+
branches:
39+
- master
40+
- 'RELEASE_*'
41+
42+
name: R-CMD-check-bioc
43+
44+
## These environment variables control whether to run GHA code later on that is
45+
## specific to testthat, covr, and pkgdown.
46+
##
47+
## If you need to clear the cache of packages, update the number inside
48+
## cache-version as discussed at https://github.com/r-lib/actions/issues/86.
49+
## Note that you can always run a GHA test without the cache by using the word
50+
## "/nocache" in the commit message.
51+
env:
52+
has_testthat: 'true'
53+
run_covr: 'true'
54+
run_pkgdown: 'true'
55+
cache-version: 'cache-v1'
56+
57+
jobs:
58+
## This first job uses the GitHub repository branch name to infer what
59+
## version of Bioconductor we will be working on.
60+
define-docker-info:
61+
runs-on: ubuntu-latest
62+
outputs:
63+
imagename: ${{ steps.findinfo.outputs.imagename }}
64+
biocversion: ${{ steps.findinfo.outputs.biocversion }}
65+
steps:
66+
- id: findinfo
67+
run: |
68+
## Find what Bioconductor RELEASE branch we are working on
69+
## otherwise, assume we are working on bioc-devel.
70+
if echo "$GITHUB_REF" | grep -q "RELEASE_"; then
71+
biocversion="$(basename -- $GITHUB_REF | tr '[:upper:]' '[:lower:]')"
72+
else
73+
biocversion="RELEASE_3_11"
74+
fi
75+
## Define the image name and print the information
76+
imagename="bioconductor/bioconductor_docker:${biocversion}"
77+
echo $imagename
78+
echo $biocversion
79+
## Save the information for the next job
80+
echo "::set-output name=imagename::${imagename}"
81+
echo "::set-output name=biocversion::${biocversion}"
82+
R-CMD-check-bioc:
83+
## This job then checks the R package using the Bioconductor docker that
84+
## was defined by the previous job. This job will determine what version of
85+
## R to use for the macOS and Windows builds on the next job.
86+
runs-on: ubuntu-latest
87+
needs: define-docker-info
88+
89+
## Name shown on the GHA log
90+
name: ubuntu-latest (r-biocdocker bioc-${{ needs.define-docker-info.outputs.biocversion }})
91+
92+
## Information used by the next job that will run on macOS and Windows
93+
outputs:
94+
rversion: ${{ steps.findrversion.outputs.rversion }}
95+
biocversionnum: ${{ steps.findrversion.outputs.biocversionnum }}
96+
97+
## Environment variables unique to this job.
98+
env:
99+
R_REMOTES_NO_ERRORS_FROM_WARNINGS: true
100+
TZ: UTC
101+
NOT_CRAN: true
102+
GITHUB_TOKEN: ${{ secrets.GHTOKEN2 }}
103+
GITHUB_PAT: ${{ secrets.GHTOKEN2 }}
104+
105+
## The docker container to use. Note that we link a directory on the GHA
106+
## runner to a docker directory, such that we can then cache the linked
107+
## directory. This directory will contain the R packages used.
108+
container:
109+
image: ${{ needs.define-docker-info.outputs.imagename }}
110+
volumes:
111+
- /home/runner/work/_temp/Library:/usr/local/lib/R/host-site-library
112+
113+
steps:
114+
- name: Install Git
115+
run: |
116+
sudo apt-get update -y
117+
sudo apt install make libssl-dev libghc-zlib-dev libcurl4-gnutls-dev libexpat1-dev gettext unzip -y
118+
wget https://github.com/git/git/archive/v2.26.2.zip -O git.zip
119+
unzip git.zip
120+
cd git-*
121+
make prefix=/usr all
122+
sudo make prefix=/usr install
123+
cd -
124+
git --version
125+
shell: bash {0}
126+
127+
- name: Install GLPK
128+
run: |
129+
sudo apt-get update -y
130+
sudo apt-get install -y glpk-utils
131+
shell: bash {0}
132+
## Related to https://github.com/actions/checkout/issues/238
133+
## https://www.digitalocean.com/community/tutorials/how-to-install-git-on-ubuntu-18-04
134+
135+
## Most of these steps are the same as the ones in
136+
## https://github.com/r-lib/actions/blob/master/examples/check-standard.yaml
137+
## If they update their steps, we will also need to update ours.
138+
- uses: actions/checkout@v2
139+
- name: Query dependencies
140+
run: |
141+
install.packages('remotes')
142+
saveRDS(remotes::dev_package_deps("MyCoursePackage/",dependencies = TRUE), ".github/depends.Rds", version = 2)
143+
message(paste('****', Sys.time(), 'installing BiocManager ****'))
144+
remotes::install_cran("BiocManager")
145+
shell: Rscript {0}
146+
147+
## Find the corresponding R version based on the Bioconductor version
148+
## to use for the macOS and Windows checks by the next GHA job
149+
- id: findrversion
150+
name: Find Bioc and R versions
151+
run: |
152+
## Find what branch we are working on
153+
if echo "$GITHUB_REF" | grep -q "master"; then
154+
biocversion="devel"
155+
elif echo "$GITHUB_REF" | grep -q "RELEASE_"; then
156+
biocversion="release"
157+
fi
158+
## Define the R and Bioconductor version numbers
159+
biocversionnum=$(Rscript -e "info <- BiocManager:::.version_map_get_online('https://bioconductor.org/config.yaml'); res <- subset(info, BiocStatus == '${biocversion}')[, 'Bioc']; cat(as.character(res))")
160+
rversion=$(Rscript -e "info <- BiocManager:::.version_map_get_online('https://bioconductor.org/config.yaml'); res <- subset(info, BiocStatus == '${biocversion}')[, 'R']; cat(as.character(res))")
161+
## Print the results
162+
echo $biocversion
163+
echo $biocversionnum
164+
echo $rversion
165+
## Save the info for the next job
166+
echo "::set-output name=rversion::${rversion}"
167+
echo "::set-output name=biocversionnum::${biocversionnum}"
168+
shell:
169+
bash {0}
170+
171+
- name: Cache R packages
172+
if: "!contains(github.event.head_commit.message, '/nocache')"
173+
uses: actions/cache@v1
174+
with:
175+
path: /home/runner/work/_temp/Library
176+
key: ${{ env.cache-version }}-${{ runner.os }}-biocdocker-biocbranch-${{ needs.define-docker-info.outputs.biocversion }}-r-${{ steps.findrversion.outputs.rversion }}-bioc-${{ steps.findrversion.outputs.biocversionnum }}-${{ hashFiles('.github/depends.Rds') }}
177+
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocdocker-biocbranch-${{ needs.define-docker-info.outputs.biocversion }}-r-${{ steps.findrversion.outputs.rversion }}-bioc-${{ steps.findrversion.outputs.biocversionnum }}-
178+
179+
- name: Install dependencies
180+
run: |
181+
## Try installing the package dependencies in steps. First the local
182+
## dependencies, then any remaining dependencies to avoid the
183+
## issues described at
184+
## https://stat.ethz.ch/pipermail/bioc-devel/2020-April/016675.html
185+
## https://github.com/r-lib/remotes/issues/296
186+
## Ideally, all dependencies should get installed in the first pass.
187+
## Pass #1 at installing dependencies
188+
message(paste('****', Sys.time(), 'pass number 1 at installing dependencies: local dependencies ****'))
189+
local_deps <- remotes::local_package_deps("MyCoursePackage/",dependencies = TRUE)
190+
deps <- remotes::dev_package_deps("MyCoursePackage/",dependencies = TRUE, repos = BiocManager::repositories())
191+
BiocManager::install(local_deps[local_deps %in% deps$package[deps$diff != 0]])
192+
## Pass #2 at installing dependencies
193+
message(paste('****', Sys.time(), 'pass number 2 at installing dependencies: any remaining dependencies ****'))
194+
deps <- remotes::dev_package_deps("MyCoursePackage/",dependencies = TRUE, repos = BiocManager::repositories())
195+
BiocManager::install(deps$package[deps$diff != 0])
196+
## For running the checks
197+
message(paste('****', Sys.time(), 'installing rcmdcheck and BiocCheck ****'))
198+
remotes::install_cran("rcmdcheck")
199+
BiocManager::install("BiocCheck")
200+
BiocManager::install("rmarkdown")
201+
BiocManager::install("RockefellerUniversity/compileCourses",subdir="compileCourses")
202+
BiocManager::install("RockefellerUniversity/Herper")
203+
BiocManager::install("BSgenome")
204+
BiocManager::install("BSgenome.Mmusculus.UCSC.mm10")
205+
shell: Rscript {0}
206+
207+
- name: Session info
208+
run: |
209+
options(width = 100)
210+
pkgs <- installed.packages()[, "Package"]
211+
sessioninfo::session_info(pkgs, include_base = TRUE)
212+
shell: Rscript {0}
213+
214+
- name: Install package
215+
if: github.ref == 'refs/heads/master'
216+
run: R CMD INSTALL ./MyCoursePackage/
217+
218+
- name: Session info
219+
run: |
220+
require(compileCourses)
221+
compileCourses::compileSingleCourseMaterial(repo="RockefellerUniversity",subdir="MyCoursePackage",branch="master")
222+
shell: Rscript {0}
223+
224+
- name: Move to docs
225+
run: |
226+
mkdir -p docs
227+
rm -r r_course/*/*/*_cache
228+
cp -r r_course/* docs/
229+
echo "Copied to docs"
230+
shell:
231+
bash {0}
232+
233+
- name: commit
234+
run: |
235+
git config --global user.email "[email protected]"
236+
git add docs/\* r_course/\*
237+
git commit -m 'Autobuild'
238+
git push origin HEAD:refs/heads/master
239+
240+
- name: Upload check results
241+
if: failure()
242+
uses: actions/upload-artifact@master
243+
with:
244+
name: ${{ runner.os }}-biocdocker-biocbranch-${{ needs.define-docker-info.outputs.biocversion }}-r-${{ steps.findrversion.outputs.rversion }}-bioc-${{ steps.findrversion.outputs.biocversionnum }}-results
245+
path: check

.gitignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.Rproj.user
2+
.Rhistory
3+
.RData
4+
.Ruserdata
5+
.DS_Store
6+
.gitignore

MyCoursePackage/.Rbuildignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
^.*\.Rproj$
2+
^\.Rproj\.user$
3+
^appveyor\.yml$

MyCoursePackage/DESCRIPTION

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
Package: MyCoursePackage
2+
Type: Package
3+
Title: Template Package for Courses
4+
Version: 0.1.1
5+
Author: Matt Paul and Thomas Carroll.
6+
Maintainer: Thomas Carroll <tc.infomatics@gmail>
7+
Description: This pacakge shows an example framework to build a teaching course.
8+
License: What license is it under?
9+
LazyData: TRUE
10+
biocViews: Training
11+
Depends: methods, ggplot2, rmarkdown, rio
12+
Suggests: knitr,
13+
rmarkdown,
14+
testthat,
15+
yaml
16+
SystemRequirements: R, RStudio
17+
VignetteBuilder: knitr
18+
RoxygenNote: 6.0.1

0 commit comments

Comments
 (0)