Skip to content

Commit

Permalink
change default value of ftp_over_https argument
Browse files Browse the repository at this point in the history
  • Loading branch information
Yunuuuu committed Jul 30, 2023
1 parent c538e55 commit 32464a7
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion R/get_geo.R
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
#' gds <- get_geo("GDS10", tempdir())
#'
#' @export
get_geo <- function(ids, dest_dir = getwd(), gse_matrix = TRUE, pdata_from_soft = TRUE, add_gpl = NULL, ftp_over_https = FALSE, handle_opts = list(connecttimeout = 60L)) {
get_geo <- function(ids, dest_dir = getwd(), gse_matrix = TRUE, pdata_from_soft = TRUE, add_gpl = NULL, ftp_over_https = TRUE, handle_opts = list(connecttimeout = 60L)) {
ids <- toupper(ids)
check_ids(ids)
if (!dir.exists(dest_dir)) {
Expand Down
2 changes: 1 addition & 1 deletion R/get_geo_suppl.R
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#' a
#'
#' @export
get_geo_suppl <- function(ids, dest_dir = getwd(), pattern = NULL, ftp_over_https = FALSE, handle_opts = list(connecttimeout = 60L)) {
get_geo_suppl <- function(ids, dest_dir = getwd(), pattern = NULL, ftp_over_https = TRUE, handle_opts = list(connecttimeout = 60L)) {
ids <- toupper(ids)
check_ids(ids)
if (!dir.exists(dest_dir)) {
Expand Down
2 changes: 1 addition & 1 deletion man/get_geo.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion man/get_geo_suppl.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 32464a7

Please sign in to comment.