context("P-value aggregation")
test_that("method selection works", {
df <- cbind(runif(5), runif(5), runif(5))
colnames(df) <- c("trans.pval", "prot.pval", "meta.pval")
method <- "random"
expect_error(combinePvalues(df, method = method))
})
test_that("Fisher method works", {
df <- cbind(runif(5), runif(5), runif(5))
colnames(df) <- c("trans.pval", "prot.pval", "meta.pval")
method <- "Fisher"
expect_is(combinePvalues(df, method = method), "numeric")
expect_equal(length(combinePvalues(df, method = method)), nrow(df))
})
test_that("Edgington method works", {
df <- cbind(runif(5), runif(5), runif(5))
colnames(df) <- c("trans.pval", "prot.pval", "meta.pval")
method <- "Edgington"
expect_is(combinePvalues(df, method = method), "numeric")
expect_equal(length(combinePvalues(df, method = method)), nrow(df))
})
test_that("Stouffer method works", {
df <- cbind(runif(5), runif(5), runif(5))
colnames(df) <- c("trans.pval", "prot.pval", "meta.pval")
method <- "Stouffer"
expect_is(combinePvalues(df, method = method), "numeric")
expect_equal(length(combinePvalues(df, method = method)), nrow(df))
})
test_that("weighted Stouffer method works", {
df <- cbind(runif(5), runif(5), runif(5))
colnames(df) <- c("trans.pval", "prot.pval", "meta.pval")
weights <- sample(1:100, 3, replace = TRUE)
expect_is(combinePvalues(df, weights = weights), "numeric")
expect_equal(length(combinePvalues(df)), nrow(df))
weights <- sample(1:100, 2, replace = TRUE)
expect_error(combinePvalues(df, weights = weights))
weights <- c(1, 1, 1)
expect_equal(combinePvalues(df), combinePvalues(df, weights = weights))
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.