Skip to content

Commit 9f9d218

Browse files
authored
Merge pull request #86 from olivroy/ellipsis
Use rlang instead of ellipsis for dot checking
2 parents 82b6aec + c5012db commit 9f9d218

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

.Rbuildignore

+1
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@ README.Rmd
1414
^.github$
1515
^\.github$
1616
_pkgdown.yml
17+
^tidyseurat\.Rproj$

DESCRIPTION

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,13 @@ Imports:
2121
magrittr,
2222
tidyr (>= 1.2.0),
2323
ggplot2,
24-
rlang,
24+
rlang (>= 1.0.0),
2525
purrr,
2626
lifecycle,
2727
methods,
2828
plotly,
2929
tidyselect,
3030
utils,
31-
ellipsis,
3231
vctrs,
3332
pillar,
3433
stringr,

NAMESPACE

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ importFrom(dplyr,slice_tail)
9494
importFrom(dplyr,summarise)
9595
importFrom(dplyr,summarize)
9696
importFrom(dplyr,vars)
97-
importFrom(ellipsis,check_dots_used)
9897
importFrom(fansi,strwrap_ctl)
9998
importFrom(ggplot2,aes)
10099
importFrom(ggplot2,ggplot)
@@ -117,6 +116,7 @@ importFrom(purrr,map_int)
117116
importFrom(purrr,reduce)
118117
importFrom(purrr,when)
119118
importFrom(rlang,":=")
119+
importFrom(rlang,check_dots_used)
120120
importFrom(rlang,dots_values)
121121
importFrom(rlang,enexpr)
122122
importFrom(rlang,enquo)

R/dplyr_methods.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -975,7 +975,7 @@ pull.Seurat <- function(.data, var=-1, name=NULL, ...) {
975975
#' data(pbmc_small)
976976
#' pbmc_small |> group_split(groups)
977977
#'
978-
#' @importFrom ellipsis check_dots_used
978+
#' @importFrom rlang check_dots_used
979979
#' @importFrom dplyr group_by
980980
#' @importFrom dplyr group_rows
981981
#' @importFrom dplyr group_split

R/tidyr_methods.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ extract.Seurat <- function (data, col, into,
204204
#' cols=c(orig.ident, groups),
205205
#' names_to="name", values_to="value")
206206
#'
207-
#' @importFrom ellipsis check_dots_used
207+
#' @importFrom rlang check_dots_used
208208
#' @importFrom tidyr pivot_longer
209209
#' @export
210210
pivot_longer.Seurat <- function(data,

0 commit comments

Comments
 (0)