# objects ----
cnf1 <- CohortNumericFilter$new(
"name" = "B_cells_Aggregate2",
"min" = 0,
"max" = .1
)
cnf2 <- CohortNumericFilter$new(
"name" = "Neutrophils_Aggregate2",
"min" = 0,
"max" = .1
)
cnfs1 <- CohortFilterList$new(list(cnf1, cnf2), type = "numeric")
cgf1 <- CohortGroupFilter$new(
"name" = "PCAWG_Study",
"values" = c("BLCA-US", "BRCA-US", "CLLE-ES")
)
cgf2 <- CohortGroupFilter$new(
"name" = "Immune_Subtype",
"values" = c("C1", "C2", "C3", "C4", "C5")
)
cgfs1 <- CohortFilterList$new(list(cgf1, cgf2), type = "group")
cgfs2 <- CohortFilterList$new(list(cgf2), type = "group")
cf1 <- CohortFilters$new(
numeric_filters = cnfs1,
group_filters = cgfs1
)
cf2 <- CohortFilters$new(
numeric_filters = cnfs1,
group_filters = cgfs2
)
tag_group <- TagGroup$new(
dataset_name = "PCAWG", group_name = "Immune_Subtype"
)
mutation_group <- MutationStatusGroup$new(
dataset_name = "TCGA", mutation_name = "ABL1:(NS)"
)
bin_group <- FeatureBinGroup$new(
dataset_name = "TCGA", feature_name = "B_cells_Aggregate2", feature_bins = 2
)
# expected_values ----
expected_feature_value_names <- c(
'sample_name',
'feature_name',
'feature_display',
'feature_value',
'feature_order',
'feature_class',
'group_short_name',
'group_long_name',
'group_characteristics',
'group_color',
"group_order",
'dataset_name',
'dataset_display'
)
expected_gene_value_names <- c(
'sample_name',
'entrez',
'hgnc',
'rna_seq_expr',
'group_short_name',
'group_long_name',
'group_characteristics',
'group_color',
"group_order",
'dataset_name',
'dataset_display'
)
expected_group_tbl_names <- c(
"short_name",
"long_name",
"characteristics",
"color",
"size",
"order",
"dataset_name",
"dataset_display"
)
expected_sample_tbl_names <- c(
"sample_name",
"group_name",
"dataset_name"
)
# tests ----
test_that("tag cohort", {
cohort <- Cohort$new(
"filter_object" = cf1,
"group_object" = tag_group
)
expect_equal(class(cohort), c("Cohort", "R6"))
class_list <- cohort$get_feature_class_list()
expect_type(class_list, "character")
expect_true(length(class_list) > 0)
feature_list <- cohort$get_feature_list()
expect_type(class_list, "character")
expect_true(length(class_list) > 0)
expect_true(cohort$has_classes(c("EPIC", "MCPcounter")))
expect_false(cohort$has_classes("DNA Alteration"))
expect_true(cohort$has_features("B_cells_memory"))
expect_false(cohort$has_classes("not_a_feature"))
expect_type(cohort$group_tbl, "list")
feature_values <- cohort$get_feature_values("B_cells_memory")
expect_type(feature_values, "list")
expect_true(nrow(feature_values) > 0)
expect_true(all(feature_values$feature_name == "B_cells_memory"))
expect_true(all(feature_values$sample_name %in% cohort$sample_tbl$sample_name))
expect_named(feature_values, expected_feature_value_names)
feature_values2 <- cohort$get_feature_values("B_cells_memory", groups = "C1")
expect_type(feature_values2, "list")
expect_true(nrow(feature_values2) > 0)
expect_true(nrow(feature_values2) < nrow(feature_values))
expect_true(all(feature_values2$feature_name == "B_cells_memory"))
expect_true(all(feature_values2$sample_name %in% cohort$sample_tbl$sample_name))
expect_named(feature_values2, expected_feature_value_names)
gene_values <- cohort$get_gene_values(entrez = 1)
expect_type(gene_values, "list")
expect_true(nrow(gene_values) > 0)
expect_true(all(gene_values$entrez == 1))
expect_true(all(gene_values$sample_name %in% cohort$sample_tbl$sample_name))
expect_named(gene_values, expected_gene_value_names)
})
test_that("mutation cohort", {
cohort <- Cohort$new(
"filter_object" = cf2,
"group_object" = mutation_group
)
expect_equal(class(cohort), c("Cohort", "R6"))
class_list <- cohort$get_feature_class_list()
expect_type(class_list, "character")
expect_true(length(class_list) > 0)
feature_list <- cohort$get_feature_list()
expect_type(class_list, "character")
expect_true(length(class_list) > 0)
expect_true(cohort$has_classes("DNA Alteration"))
expect_false(cohort$has_classes("not a class"))
expect_true(cohort$has_features("B_cells_memory"))
expect_false(cohort$has_classes("not_a_feature"))
feature_values <- cohort$get_feature_values("B_cells_memory")
expect_type(feature_values, "list")
expect_true(nrow(feature_values) > 0)
expect_true(all(feature_values$feature_name == "B_cells_memory"))
expect_true(all(feature_values$sample_name %in% cohort$sample_tbl$sample_name))
expect_named(feature_values, expected_feature_value_names)
gene_values <- cohort$get_gene_values(entrez = 2)
expect_type(gene_values, "list")
expect_true(nrow(gene_values) > 0)
expect_true(all(gene_values$entrez == 2))
expect_true(all(gene_values$sample_name %in% cohort$sample_tbl$sample_name))
expect_named(gene_values, expected_gene_value_names)
})
test_that("feature bin cohort", {
cohort <- Cohort$new(
"filter_object" = cf2,
"group_object" = bin_group
)
expect_equal(class(cohort), c("Cohort", "R6"))
class_list <- cohort$get_feature_class_list()
expect_type(class_list, "character")
expect_true(length(class_list) > 0)
feature_list <- cohort$get_feature_list()
expect_type(class_list, "character")
expect_true(length(class_list) > 0)
expect_true(cohort$has_classes("DNA Alteration"))
expect_false(cohort$has_classes("not a class"))
expect_true(cohort$has_features("B_cells_memory"))
expect_false(cohort$has_classes("not_a_feature"))
feature_values <- cohort$get_feature_values("B_cells_memory")
expect_type(feature_values, "list")
expect_true(nrow(feature_values) > 0)
expect_true(all(feature_values$feature_name == "B_cells_memory"))
expect_true(all(feature_values$sample_name %in% cohort$sample_tbl$sample_name))
expect_named(feature_values, expected_feature_value_names)
gene_values <- cohort$get_gene_values(entrez = 2)
expect_type(gene_values, "list")
expect_true(nrow(gene_values) > 0)
expect_true(all(gene_values$entrez == 2))
expect_true(all(gene_values$sample_name %in% cohort$sample_tbl$sample_name))
expect_named(gene_values, expected_gene_value_names)
})
test_that("upload cohort", {
cohort <- UploadCohort$new(
"upload_tbl" = get_user_group_tbl(),
"group_name" = "COAD"
)
expect_equal(class(cohort), c("UploadCohort", "R6"))
expect_equal(cohort$dataset_names, "TCGA")
expect_equal(cohort$dataset_displays, "TCGA")
expect_equal(cohort$group_type, "upload")
expect_equal(cohort$cohort_names, "TCGA")
expect_equal(cohort$group_name, "COAD")
expect_equal(cohort$group_display , "COAD")
expect_equal(colnames(cohort$sample_tbl), expected_sample_tbl_names)
expect_equal(colnames(cohort$group_tbl), expected_group_tbl_names)
expect_named(cohort$plot_colors, c("NO", "YES"))
expect_equal(unname(cohort$plot_colors), c("#440154FF", "#FDE725FF"))
class_list <- cohort$get_feature_class_list()
expect_type(class_list, "character")
expect_true(length(class_list) > 0)
feature_list <- cohort$get_feature_list()
expect_type(class_list, "character")
expect_true(length(class_list) > 0)
expect_true(cohort$has_classes(c("EPIC", "MCPcounter")))
expect_false(cohort$has_classes("not_a_class"))
expect_true(cohort$has_features("B_cells_memory"))
expect_false(cohort$has_classes("not_a_feature"))
feature_values <- cohort$get_feature_values("B_cells_memory")
expect_type(feature_values, "list")
expect_true(nrow(feature_values) > 0)
expect_true(all(feature_values$feature_name == "B_cells_memory"))
expect_true(all(feature_values$sample_name %in% cohort$sample_tbl$sample_name))
expect_named(feature_values, expected_feature_value_names)
feature_values2 <- cohort$get_feature_values("B_cells_memory", groups = "YES")
expect_type(feature_values2, "list")
expect_true(nrow(feature_values2) > 0)
expect_true(nrow(feature_values2) < nrow(feature_values))
expect_true(all(feature_values2$feature_name == "B_cells_memory"))
expect_true(all(feature_values2$sample_name %in% cohort$sample_tbl$sample_name))
expect_named(feature_values2, expected_feature_value_names)
gene_values <- cohort$get_gene_values(entrez = 2)
expect_type(gene_values, "list")
expect_true(nrow(gene_values) > 0)
expect_true(all(gene_values$entrez == 2))
expect_true(all(gene_values$sample_name %in% cohort$sample_tbl$sample_name))
expect_named(gene_values, expected_gene_value_names)
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.