Skip to content

Commit c435514

Browse files
committed
fix bug tidybulk reference
1 parent f9031fb commit c435514

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: tidySingleCellExperiment
33
Title: Brings SingleCellExperiment to the Tidyverse
4-
Version: 1.7.1
4+
Version: 1.7.2
55
Authors@R: c(person("Stefano", "Mangiola", email = "[email protected]",
66
role = c("aut", "cre")) )
77
Description: tidySingleCellExperiment is an adapter that abstracts the 'SingleCellExperiment' container

R/print_method.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ print.SingleCellExperiment <- function(x, ..., n = NULL, width = NULL, n_extra =
119119
x |>
120120
as_tibble(n_dimensions_to_return = 5) |>
121121
vctrs::new_data_frame(class = c("tidySingleCellExperiment", "tbl")) %>%
122-
tidybulk:::add_attr( nrow(x), "number_of_features") %>%
123-
tidybulk:::add_attr( assays(x) %>% names , "assay_names") %>%
122+
add_attr( nrow(x), "number_of_features") %>%
123+
add_attr( assays(x) %>% names , "assay_names") %>%
124124
print()
125125

126126
invisible(x)

0 commit comments

Comments
 (0)