Nothing
### --- Test setup ---
if(FALSE) {
## Not really needed, but can be handy when writing tests
library("RUnit")
library("geneRxCluster")
}
### --- Test functions ---
callCl <- geneRxCluster:::grx_clust_Call
res <- callCl(chromoSts=c(1L,11L), chromoEnds=c(10L,20L), strt=as.integer(1:20),
grp=as.integer(rep(0:1,each=10)), kvals=c(10L),
cutptExprs=rep(Inf,1),
cutptFunExprs=
list(structure(as.integer(c(3,8)),
fdr=cbind(low=(0:10)/10,up=(10:0)/10))) ,
tmpEnv=new.env(), nperm=0L,
integer(0),integer(0))
names(res) <-
c("kcounts", "ct", "cutptFunRes", "depth", "cluster_id",
"sitewise_best", "cluster_best", "summary_matrix", "sdiff",
"cutptSdiff")
test_simply_grx_clust_Call <- function(){
checkTrue(all(res$kcounts[c(10,20),1]==c(0,10)))
checkTrue(all(res$ct==rep(c(-1,1),each=10)))
checkTrue(all(res$depth==rep(c(-1,1),each=10)))
checkTrue(all(res$cluster_best[[1]] == c(Inf,0,0)))
checkTrue(all(res$sdiff[c(10,20),1]==c(9,9)))
checkTrue(sum(is.na(res$sdiff[,1]))==18)
}
test_crossover_gRxCluster <- function(){
res <- gRxCluster(rep("a",100),1:100L,rep(c(FALSE,TRUE),each=50),
kvals=10L:30L, cutptExprs=rep(Inf,1))
checkTrue(length(res)==2)
checkEquals(res$value1,rev(res$value2))
}
test_prune_gRxCluster <- function(){
res <- gRxCluster(rep("a",100),1:100L,
c(rep(TRUE,5),rep(c(FALSE,TRUE),each=45),rep(FALSE,5)),
kvals=10L:30L, cutptExprs=rep(Inf,1))
checkTrue(length(res)==2)
checkEquals(width(res),rep(45,2))
}
test_bad_args_gRxCluster <- function(){
checkException(
gRxCluster(rep("a",100),0:100L,
c(rep(TRUE,5),rep(c(FALSE,TRUE),each=45),rep(FALSE,5)),
kvals=10L:30L, cutptExprs=rep(Inf,1)),
"arg lengths not equal")
}
test_permutation_both_ways_gRxCluster <- function(){
seqnm <- as.integer(rep(1:5,each=200))
st1 <- sort(sample(10000,1000))
al1 <- rbinom(1000,1,0.5)
al1[50:75] <- 1L
sample.id <- seq_along(al1)-1
sample.tab <- al1
set.seed(12345)
res4 <-
gRxCluster(
as.integer(seqnm),
as.integer(st1),
as.integer(al1),
as.integer(c(15:16)),
nperm=20L,
sample.id=as.integer(sample.id+1),
sample.tab=as.integer(sample.tab))
set.seed(12345)
set.seed(12345)
res5 <-
gRxCluster(
as.integer(seqnm),
as.integer(st1),
as.integer(al1),
as.integer(c(15:16)),
nperm=20L)
checkEquals(metadata(res4)$perm_cluster_best,
metadata(res4)$perm_cluster_best)
}
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.