@@ -343,7 +343,7 @@ get_seurat <- function(...) {
343343# ' connect to the metadata database. Possible parameters are described here:
344344# ' https://rpostgres.r-dbi.org/reference/postgres.
345345# ' @return A lazy data.frame subclass containing the metadata. You can interact
346- # ' with this object using most standard dplyr functions. For string matching,
346+ # ' with this object using most standard dplyr functions. For string matching,
347347# ' it is recommended that you use `stringr::str_like` to filter character
348348# ' columns, as `stringr::str_match` will not work.
349349# ' @export
@@ -379,9 +379,9 @@ get_metadata <- function(
379379}
380380
381381
382- # ' Downloads an SQLite database of the Human Cell Atlas metadata to a local
383- # ' cache, and then opens it as a data frame. It can then be filtered and
384- # ' passed into [get_SingleCellExperiment()]
382+ # ' Downloads an SQLite database of the Human Cell Atlas metadata to a local
383+ # ' cache, and then opens it as a data frame. It can then be filtered and
384+ # ' passed into [get_SingleCellExperiment()]
385385# ' to obtain a [`SingleCellExperiment`](SingleCellExperiment::SingleCellExperiment-class)
386386# '
387387# ' @param remote_url Optional character vector of length 1. An HTTP URL pointing
@@ -390,7 +390,7 @@ get_metadata <- function(
390390# ' your local system to a directory (not a file) that will be used to store
391391# ' metadata.sqlite
392392# ' @return A lazy data.frame subclass containing the metadata. You can interact
393- # ' with this object using most standard dplyr functions. For string matching,
393+ # ' with this object using most standard dplyr functions. For string matching,
394394# ' it is recommended that you use `stringr::str_like` to filter character
395395# ' columns, as `stringr::str_match` will not work.
396396# ' @export
@@ -419,6 +419,7 @@ get_metadata_local <- function(
419419 if (! file.exists(sqlite_path )){
420420 tar_dir <- tempdir()
421421 tar_file <- file.path(tar_dir , " metadata.tar.xz" )
422+ cli_alert_info(" The following procedure is performed once and will take approximately 3 minutes" )
422423 cli_alert_info(" Downloading tar archive" )
423424 sync_remote_file(
424425 remote_url ,
0 commit comments