Skip to content

Commit 45d7ef3

Browse files
committed
Remove warnings of rcmdcheck in R 4.2
1 parent 65c8bfd commit 45d7ef3

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ License: GPL-3
1717
Depends:
1818
R (>= 4.1.0),
1919
SummarizedExperiment,
20-
ttservice
20+
ttservice,
21+
dplyr
2122
Imports:
2223
tibble (>= 3.0.4),
23-
dplyr,
2424
magrittr,
2525
tidyr,
2626
ggplot2,

NAMESPACE

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ S3method(tidy,SummarizedExperiment)
3737
S3method(unite,SummarizedExperiment)
3838
S3method(unnest,tidySummarizedExperiment_nested)
3939
export("%>%")
40+
export(bind_cols.RangedSummarizedExperiment)
41+
export(bind_cols.SummarizedExperiment)
42+
export(bind_rows.SummarizedExperiment)
4043
export(plot_ly)
4144
export(tidy)
4245
export(unnest_summarized_experiment)

R/dplyr_methods.R

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#' @importFrom SummarizedExperiment assays<-
1818
#' @importFrom S4Vectors SimpleList
1919
#' @importFrom ttservice bind_rows
20+
#' @export bind_rows.SummarizedExperiment
2021
#' @export
2122
bind_rows.SummarizedExperiment <- function(..., .id=NULL, add.cell.ids=NULL) {
2223
tts <- flatten_if(dots_values(...), is_spliced)
@@ -91,11 +92,13 @@ bind_cols_ <- function(..., .id=NULL) { bind_cols_internal(..., .id=NULL) }
9192

9293
#' @rdname bind_rows
9394
#' @aliases bind_cols
95+
#' @export bind_cols.SummarizedExperiment
9496
#' @export
9597
bind_cols.SummarizedExperiment <- bind_cols_
9698

9799
#' @rdname bind_rows
98100
#' @aliases bind_cols
101+
#' @export bind_cols.RangedSummarizedExperiment
99102
#' @export
100103
bind_cols.RangedSummarizedExperiment <- bind_cols_
101104

0 commit comments

Comments
 (0)