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

Commit d2bf12e

Browse files
authored
Merge pull request #108 from stemangiola/counts-0.2.1
Update counts version to 0.2.1
2 parents 52baec1 + c55e9ab commit d2bf12e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

R/counts.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@ assay_map <- c(
1313
cpm = "cpm"
1414
)
1515

16-
#' Base URL pointing to the count data
16+
#' Base URL pointing to the count data at the current version
1717
COUNTS_URL <- single_line_str(
18-
"https://swift.rc.nectar.org.au/v1/
19-
AUTH_06d6e008e3e642da99d806ba3ea629c5/harmonised-human-atlas"
18+
"https://object-store.rc.nectar.org.au/v1/
19+
AUTH_06d6e008e3e642da99d806ba3ea629c5/cellxgene-0.2.1-hdf5"
2020
)
2121
#' Current version of the counts. This will be incremented when a newer
2222
#' version is released
23-
COUNTS_VERSION <- "0.2"
23+
COUNTS_VERSION <- "0.2.1"
2424

2525
#' Gets a SingleCellExperiment from curated metadata
2626
#'

tests/testthat/test-query.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ test_that("get_SingleCellExperiment() assigns the right cell ID to each cell", {
131131

132132
# Load the SCE from cache directly
133133
assay_1 = CuratedAtlasQueryR:::get_default_cache_dir() |>
134-
file.path("0.2/original", id) |>
134+
file.path(CuratedAtlasQueryR:::COUNTS_VERSION, "original", id) |>
135135
HDF5Array::loadHDF5SummarizedExperiment() |>
136136
assay("X") |>
137137
as.matrix()

0 commit comments

Comments
 (0)