tests/testthat/test-5addNMF.R

context("addNMF")
test_that("addNMF", {
  skip_if_not_installed("NMF")
  data(GlobalPatterns, package="mia")
  #
  set.seed(123)
  tse <- GlobalPatterns
  tse <- agglomerateByPrevalence(tse, rank = "Phylum")
  tse <- addNMF(tse, k = 2, seed = 123)
  expect_named(reducedDims(tse),"NMF")
  expect_true(is.matrix(reducedDim(tse,"NMF")))
  expect_equal(dim(reducedDim(tse,"NMF")),c(26,2))
  red <- reducedDim(tse,"NMF")
  expect_equal(names(attributes(red)),
               c("dim","dimnames","loadings", "NMF_output"))
  expect_equal(dim(attr(red,"loadings")),c(35,2))
  # Check if ordination matrix returned by NMF::nmf is the same as
  # getNMF and addNMF ones
  mat <- t(assay(tse, "counts"))
  library("NMF")
  nmf_model <- NMF::nmf(mat, rank = 2, seed = 123)
  loadings <- t(nmf_model@fit@H)
  # Compare NMF::nmf and addNMF
  expect_equal(loadings, attr(red, "loadings"), tolerance = 10**-3)
  scores2 <- getNMF(tse, k = 2, seed = 123)
  # Compare NMF::nmf and getNMF
  expect_equal(loadings, attr(scores2, "loadings"), tolerance = 10**-4)
  # Test that additional parameters are passed
  scores3 <- getNMF(tse, k = 2, nrun = 2)
  library("NMF")
  nmf_model <- NMF::nmf(mat, rank = 2, nrun = 2)
  expect_equal(attr(scores3, "NMF_output")@nrun, nmf_model@nrun)
  # ERRORs
  expect_error(
    addNMF(GlobalPatterns, k = "test", assay.type = "counts", name = "NMF")
  )
  expect_error(
    addNMF(GlobalPatterns, k = 1.5, assay.type = "counts", name = "NMF")
  )
  expect_error(
    addNMF(GlobalPatterns, k = TRUE, assay.type = "counts", name = "NMF")
  )
  expect_error(
    addNMF(GlobalPatterns, k = 2, assay.type = "test", name = "NMF")
  )
  expect_error(
    addNMF(GlobalPatterns, k = 2, assay.type = 1, name = "NMF")
  )
  expect_error(
    addNMF(GlobalPatterns, k = 2, assay.type = TRUE, name = "NMF")
  )
  expect_error(
    addNMF(GlobalPatterns, k = 2, assay.type = "counts", name = 1)
  )
  expect_error(
    addNMF(GlobalPatterns, k = 2, assay.type = "counts", name = TRUE)
  )
})
microbiome/mia documentation built on Sept. 19, 2024, 11:17 p.m.