Nothing
library(regsplice)
context("voom transformation and weights")
test_that("voom transformation and weights are calculated correctly", {
counts <- cbind(sample1 = c(1, 4, 0, 5),
sample2 = c(0, 1, 0, 5),
sample3 = c(0, 9, 6, 30),
sample4 = c(3, 12, 4, 23),
sample5 = c(1, 4, 0, 10),
sample6 = c(1, 3, 1, 22))
gene_IDs <- "gene1"
n_exons <- 4
condition <- rep(c(0, 1), each = 3)
rs_data <- RegspliceData(counts, gene_IDs, n_exons, condition)
rs_data <- filterZeros(rs_data)
rs_data <- filterLowCounts(rs_data)
rs_data <- runNormalization(rs_data)
rs_data <- runVoom(rs_data)
lib_sizes <- colData(rs_data)$lib_sizes
expect_length(lib_sizes, 6)
expect_is(weightsData(rs_data), "matrix")
expect_is(weightsData(rs_data)[2, 3], "numeric")
})
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.