Skip to content

Commit

Permalink
apply fix to other functions and run roxygen
Browse files Browse the repository at this point in the history
  • Loading branch information
rcannood committed Nov 14, 2024
1 parent 88879f8 commit 700438a
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
6 changes: 3 additions & 3 deletions NAMESPACE
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ S3method("[[",collections.abc.Mapping)
S3method("[[<-",LayersR6)
S3method("[[<-",collections.abc.MutableMapping)
S3method("dimnames<-",AnnDataR6)
S3method(all,equal.AnnDataR6)
S3method(all,equal.LayersR6)
S3method(all,equal.RawR6)
S3method(all.equal,AnnDataR6)
S3method(all.equal,LayersR6)
S3method(all.equal,RawR6)
S3method(as.data.frame,AnnDataR6)
S3method(as.matrix,AnnDataR6)
S3method(as.matrix,RawR6)
Expand Down
3 changes: 2 additions & 1 deletion R/class_layers.R
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,8 @@ py_to_r.anndata._core.aligned_mapping.LayersBase <- function(x) {


#' @rdname all.equal
#' @export
#' @method all.equal LayersR6
#' @exportS3Method all.equal LayersR6
all.equal.LayersR6 <- function(target, current, ...) {
a <- target
b <- current
Expand Down
3 changes: 2 additions & 1 deletion R/class_raw.R
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,8 @@ py_to_r.anndata._core.raw.Raw <- function(x) {
}

#' @rdname all.equal
#' @export
#' @method all.equal RawR6
#' @exportS3Method all.equal RawR6
all.equal.RawR6 <- function(target, current, ...) {
a <- target
b <- current
Expand Down
6 changes: 3 additions & 3 deletions man/all.equal.Rd

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

0 comments on commit 700438a

Please sign in to comment.