Nothing
context("test-normalise_to_total_sum")
test_that("normalise to sum returns correct output", {
out <- normalise_to_sum (testData$data)
attributes(out)$processing_history <- NULL
expect_equal(out, testData$normalise_to_sum)
})
test_that("normalise to sum returns correct output when matrix needs to be transposed", {
expect_warning (out <- normalise_to_sum(t(testData$data)))
attributes(out)$processing_history <- NULL
expect_equal(out, testData$normalise_to_sum)
})
test_that("normalise to sum returns correct output when there are less features than samples", {
out <- normalise_to_sum(testData$data[1:8,], check_df=FALSE)
expect_true(all(round(apply (out, 2, sum, na.rm=TRUE), 0) == 100L))
})
context("test-pqn_normalisation")
test_that("PQN normalisation returns correct output", {
out <- pqn_normalisation(df=testData$data, classes=testData$class,
qc_label="QC")
attributes(out)$processing_history <- NULL
expect_equal(as.vector(attributes(out)$flags),
testData$pqn_normalisation$coef)
attributes(out)$flags <- NULL
expect_equal(out, testData$pqn_normalisation$df)
})
test_that("PQN normalisation returns correct output, when all samples are used to calculate correction factor", {
out <- pqn_normalisation(df=testData$data, classes=testData$class,
qc_label="all")
attributes(out)$processing_history <- NULL
expect_equal(as.vector(attributes(out)$flags),
testData$pqn_normalisation_all$coef)
attributes(out)$flags <- NULL
expect_equal(out, testData$pqn_normalisation_all$df)
})
test_that("PQN normalisation returns correct output when matrix needs to be transposed", {
out <- pqn_normalisation(df=t(testData$data), classes=testData$class,
qc_label="QC")
attributes(out)$processing_history <- NULL
expect_equal(as.vector(attributes(out)$flags),
testData$pqn_normalisation$coef)
attributes(out)$flags <- NULL
expect_equal(out, testData$pqn_normalisation$df)
})
test_that("PQN normalisation doesn't crash if only one feature is selected for normalisation", {
out <- matrix(nrow=3, ncol=9)
out <- rbind(out, testData$data[1, ])
out <- pqn_normalisation(df=out, classes=testData$class, qc_label="QC")
expect_true(nrow(out) == 4)
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.