Skip to content

Commit

Permalink
update to fix issue in auto-test
Browse files Browse the repository at this point in the history
  • Loading branch information
ShixiangWang committed Oct 30, 2024
1 parent dba416d commit 5c65b32
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
2 changes: 1 addition & 1 deletion R/XenaHub-class.R
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ XenaDataUpdate <- function(saveTolocal = TRUE) { # nocov start
message("=> Saving...")
data_dir <- base::system.file("data", package = "UCSCXenaTools")
if (dir.exists(data_dir)) {
save(XenaData, file = file.path(data_dir, "XenaData.rda"))
save(XenaData, file = file.path(data_dir, "XenaData.rda"), compress = "xz")
} else {
message("There is no data directory ", data_dir)
message("Please check it.")
Expand Down
Binary file modified data/XenaData.rda
Binary file not shown.
25 changes: 13 additions & 12 deletions tests/testthat/test-full-tests.R
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,19 @@ xe3 <- XenaHub(


all_hosts <- c(
"https://ucscpublic.xenahubs.net",
"https://tcga.xenahubs.net",
"https://gdc.xenahubs.net",
"https://icgc.xenahubs.net",
"https://toil.xenahubs.net",
"https://pancanatlas.xenahubs.net",
"https://xena.treehouse.gi.ucsc.edu:443",
"https://pcawg.xenahubs.net",
"https://atacseq.xenahubs.net",
"https://singlecellnew.xenahubs.net",
"https://kidsfirst.xenahubs.net"
#"https://tdi.xenahubs.net"
"https://ucscpublic.xenahubs.net",
"https://tcga.xenahubs.net",
"https://gdc.xenahubs.net",
"https://gdcV18.xenahubs.net",
"https://icgc.xenahubs.net",
"https://toil.xenahubs.net",
"https://pancanatlas.xenahubs.net",
"https://xena.treehouse.gi.ucsc.edu:443",
"https://pcawg.xenahubs.net",
"https://atacseq.xenahubs.net",
"https://singlecellnew.xenahubs.net",
"https://kidsfirst.xenahubs.net",
"https://tdi.xenahubs.net"
)


Expand Down

0 comments on commit 5c65b32

Please sign in to comment.