Skip to content

Commit

Permalink
Merge pull request #86 from olivroy/ellipsis
Browse files Browse the repository at this point in the history
Use rlang instead of ellipsis for dot checking
  • Loading branch information
stemangiola authored Jul 23, 2024
2 parents 82b6aec + c5012db commit 9f9d218
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,4 @@ README.Rmd
^.github$
^\.github$
_pkgdown.yml
^tidyseurat\.Rproj$
3 changes: 1 addition & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,13 @@ Imports:
magrittr,
tidyr (>= 1.2.0),
ggplot2,
rlang,
rlang (>= 1.0.0),
purrr,
lifecycle,
methods,
plotly,
tidyselect,
utils,
ellipsis,
vctrs,
pillar,
stringr,
Expand Down
2 changes: 1 addition & 1 deletion NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,6 @@ importFrom(dplyr,slice_tail)
importFrom(dplyr,summarise)
importFrom(dplyr,summarize)
importFrom(dplyr,vars)
importFrom(ellipsis,check_dots_used)
importFrom(fansi,strwrap_ctl)
importFrom(ggplot2,aes)
importFrom(ggplot2,ggplot)
Expand All @@ -117,6 +116,7 @@ importFrom(purrr,map_int)
importFrom(purrr,reduce)
importFrom(purrr,when)
importFrom(rlang,":=")
importFrom(rlang,check_dots_used)
importFrom(rlang,dots_values)
importFrom(rlang,enexpr)
importFrom(rlang,enquo)
Expand Down
2 changes: 1 addition & 1 deletion R/dplyr_methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -975,7 +975,7 @@ pull.Seurat <- function(.data, var=-1, name=NULL, ...) {
#' data(pbmc_small)
#' pbmc_small |> group_split(groups)
#'
#' @importFrom ellipsis check_dots_used
#' @importFrom rlang check_dots_used
#' @importFrom dplyr group_by
#' @importFrom dplyr group_rows
#' @importFrom dplyr group_split
Expand Down
2 changes: 1 addition & 1 deletion R/tidyr_methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ extract.Seurat <- function (data, col, into,
#' cols=c(orig.ident, groups),
#' names_to="name", values_to="value")
#'
#' @importFrom ellipsis check_dots_used
#' @importFrom rlang check_dots_used
#' @importFrom tidyr pivot_longer
#' @export
pivot_longer.Seurat <- function(data,
Expand Down

0 comments on commit 9f9d218

Please sign in to comment.