Nothing
gi <- get_GI_network(minigwas, snpMapping = minisnpMapping, ppi = minippi)
test_that("we recover all the SNPs we want", {
subgi <- martini:::subnet(gi, "gene", "A")
snpA <- grep("A", minigwas$map$snp.names, value = TRUE)
expect_true(all(names(igraph::V(subgi)) %in% snpA))
expect_true(all(snpA %in% names(igraph::V(subgi))))
})
test_that("we don't recover the SNPs we don't want", {
subgi <- martini:::subnet(gi, "gene", "A", affirmative = FALSE)
snpNotA <- grep("A", minigwas$map$snp.names, value = TRUE, invert = TRUE)
expect_true(all(names(igraph::V(subgi)) %in% snpNotA))
expect_true(all(snpNotA %in% names(igraph::V(subgi))))
})
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.