Skip to contents

Checks if se is combo dataset.

Usage

is_combo_data(se)

Arguments

se

SummarizedExperiment

Value

logical

Examples

se <- get_synthetic_data("combo_matrix")[[1]]
is_combo_data(se)
#> [1] TRUE
se <- get_synthetic_data("combo_matrix")[[2]]
is_combo_data(se)
#> [1] FALSE
se <- get_synthetic_data("small")[[1]]
is_combo_data(se)
#> [1] FALSE