tests/testthat/test-clust_groups.R

library("GSEAmining")
data(genesets_sel)

test_that("Test that clust_groups, clust_group_terms and clust_group_cores
          produce data.frames with necessary variables", {

  gs.filt <- gm_filter(genesets_sel,
                       p.adj = 0.05,
                       neg_NES = 2.6,
                       pos_NES = 2)
  gs.cl <- gm_clust(gs.filt)

  cg <- clust_groups(genesets_sel, gs.cl)
  cg_t <- clust_group_terms(cg)
  cg_c <- clust_group_cores(cg)


  expect_equal(class(cg), 'data.frame')
  expect_equal(names(cg),
               c("ID", "Cluster", "NES", "p.adjust", "core_enrichment"))
  expect_equal(names(cg_t),
               c("Cluster", "Enrichment", "monogram", "n"))
  expect_equal(names(cg_c),
               c("Cluster", "Enrichment", "lead_token", "n"))

})

Try the GSEAmining package in your browser

Any scripts or data that you put into this service are public.

GSEAmining documentation built on Nov. 8, 2020, 5:52 p.m.