Nothing
## unit tests for all easyRNASeq extension of other packages
### =========================
## GenomicRanges
### =========================
"test_GRangesColnames" <- function(){
grngs <- GRanges(
seqnames=Rle(factor(c("chr01","chr01","chr02"))),
ranges=IRanges(
start=c(10,30,100),
end=c(21,53,123)),
strand=Rle(factor(c("+","+","-"))),
transcript=c("trA1","trA2","trB"),
gene=c("gA","gA","gB"),
exon=c("e1","e2","e3")
)
exptCols <- c("transcript","gene","exon")
## accessing the colnames
checkEquals(colnames(grngs),exptCols)
## creating a GRangesList
grngsList<-split(grngs,seqnames(grngs))
## accessing the colnames
checkEquals(colnames(grngsList),exptCols)
}
"test_BamFileValidate" <- function(){
tdir <- tutorialData()
filenames <- dir(tdir,pattern="[A,C,T,G]{6}\\.bam$",full.names=TRUE)
indexnames <- sapply(paste0(sub(".*_","",basename(filenames)),".bai"),fetchData)
bfl <- BamFileList(filenames,index=indexnames)
checkTrue(validate(bfl))
}
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.