Skip to content

Commit

Permalink
Fix ParseHCA
Browse files Browse the repository at this point in the history
  • Loading branch information
showteeth committed Apr 30, 2024
1 parent f749a61 commit 129a1eb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions R/hca.R
Original file line number Diff line number Diff line change
Expand Up @@ -330,6 +330,10 @@ ParseHCA <- function(meta, file.ext = c("rds", "rdata", "h5", "h5ad", "loom"), o
if (is.null(out.folder)) {
out.folder <- getwd()
}
if (!dir.exists(out.folder)) {
message(out.folder, " does not exist, create automatically!")
dir.create(out.folder, recursive = TRUE)
}
names(download.urls) <- file.path(out.folder, names(download.urls))
# download urls
# set timeout
Expand Down

0 comments on commit 129a1eb

Please sign in to comment.