Skip to content

Commit

Permalink
drop exports for slice functions
Browse files Browse the repository at this point in the history
  • Loading branch information
wvictor14 committed Aug 19, 2023
1 parent 582f57d commit b80fed3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 13 deletions.
6 changes: 0 additions & 6 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,6 @@ export(sample_frac)
export(sample_n)
export(select)
export(separate)
export(slice)
export(slice_head)
export(slice_max)
export(slice_min)
export(slice_sample)
export(slice_tail)
export(summarise)
export(tbl_format_header)
export(tidy)
Expand Down
7 changes: 0 additions & 7 deletions R/dplyr_methods.R
Original file line number Diff line number Diff line change
Expand Up @@ -867,7 +867,6 @@ full_join.Seurat <- function (x, y, by = NULL, copy = FALSE, suffix = c(".x", ".
#' @rdname dplyr-methods
#' @name slice
#'
#' @export
#' @examples
#'
#' `%>%` = magrittr::`%>%`
Expand All @@ -893,8 +892,6 @@ slice.Seurat <- function (.data, ..., .by = NULL, .preserve = FALSE)

}

#' @export
#'
#' @rdname dplyr-methods
#' @name slice_sample
#'
Expand Down Expand Up @@ -950,7 +947,6 @@ slice_sample.Seurat <- function(.data, ..., n = NULL, prop = NULL, by = NULL, we

}

#' @export
#' @rdname dplyr-methods
#' @name slice_head
#' @importFrom dplyr slice_head
Expand All @@ -972,7 +968,6 @@ slice_head.Seurat <- function(.data, ..., n, prop, by = NULL) {
new_obj
}

#' @export
#' @rdname dplyr-methods
#' @name slice_tail
#' @importFrom dplyr slice_tail
Expand All @@ -994,7 +989,6 @@ slice_tail.Seurat <- function(.data, ..., n, prop, by = NULL) {
new_obj
}

#' @export
#' @rdname dplyr-methods
#' @name slice_min
#' @importFrom dplyr slice_min
Expand Down Expand Up @@ -1033,7 +1027,6 @@ slice_min.Seurat <- function(.data, order_by, ..., n, prop, by = NULL, with_ties
new_obj
}

#' @export
#' @rdname dplyr-methods
#' @name slice_max
#' @importFrom dplyr slice_max
Expand Down

0 comments on commit b80fed3

Please sign in to comment.