Skip to content
This repository was archived by the owner on Oct 14, 2025. It is now read-only.

Commit cf2988a

Browse files
committed
Use less stringent cache, update examples again
1 parent 5dd98fb commit cf2988a

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

.github/workflows/check-bioc.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,16 +107,14 @@ jobs:
107107
uses: actions/cache@v2
108108
with:
109109
path: ${{ env.R_LIBS_USER }}
110-
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_15-r-4.2-${{ hashFiles('.github/depends.Rds') }}
111-
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_15-r-4.2-
110+
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_15-r-4.2
112111

113112
- name: Cache R packages on Linux
114113
if: "!contains(github.event.head_commit.message, '/nocache') && runner.os == 'Linux' "
115114
uses: actions/cache@v2
116115
with:
117116
path: /home/runner/work/_temp/Library
118-
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_15-r-4.2-${{ hashFiles('.github/depends.Rds') }}
119-
restore-keys: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_15-r-4.2-
117+
key: ${{ env.cache-version }}-${{ runner.os }}-biocversion-RELEASE_3_15-r-4.2
120118

121119
- name: Install Linux system dependencies
122120
if: runner.os == 'Linux'

R/query.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ as.sparse.DelayedMatrix <- function(x) {
256256
#' @return A Seurat object containing the same data as a call to get_SingleCellExperiment.
257257
#' @examples
258258
#' meta <- get_metadata() |> head(2)
259-
#' seurat <- get_seurat(meta, repository = Sys.getenv("REMOTE_HCA"), cache_directory)
259+
#' seurat <- get_seurat(meta)
260260
#'
261261
get_seurat <- function(...) {
262262
get_SingleCellExperiment(...) |> as.Seurat(data = NULL)

man/get_seurat.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)