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

Commit b14eaf8

Browse files
authored
Merge pull request #51 from stemangiola/add_messaging
state completion time
2 parents b1c39e8 + dbe949b commit b14eaf8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

R/query.R

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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,7 +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("Downloading tar archive")
422+
cli_alert_info("Downloading tar archive. The following procedure is performed once and will take approximately 3 minutes.")
423423
sync_remote_file(
424424
remote_url,
425425
tar_file,

0 commit comments

Comments
 (0)