Revision 9f7b6d4e450c337560b4a6df9198aa74c9be01b9 authored by Vladislav Kamenev on 07 August 2018, 09:41:33 UTC, committed by GitHub on 07 August 2018, 09:41:33 UTC
testpcaPlot.R
context("PCA Plot")
test_that("pcaPlot finishes with result", {
load(file = system.file("testdata/GSE27112-GPL6103.rda", package="phantasus"))
expect_is(calcPCA(es), "json")
})
test_that("pcaPlot results in columnsXcolumns matrix", {
load(file = system.file("testdata/GSE27112-GPL6103.rda", package="phantasus"))
expect_equal(nrow(jsonlite::fromJSON(calcPCA(es))$pca),
length(sampleNames(es)))
})
test_that("pcaPlot drops NA rows", {
es <- read.gct(system.file("testdata/centers.gct", package="phantasus"))
pca <- jsonlite::fromJSON(calcPCA(es))
expect_equal(nrow(exprs(es)), 6)
expect_equal(nrow(pca$pca), 5)
})

Computing file changes ...