Nothing
context("splice-site-extraction")
test_that("splice site extraction works and is consistent with HISAT2 output", {
## input in gtf format, one chromosome
tmp <- tempfile()
extract_splice_sites(features=system.file("extdata/refs/genes.gtf",
package="Rhisat2"),
outfile=tmp, min_length=5)
tmp <- read.delim(tmp, header=FALSE, as.is=TRUE)
his <- read.delim(system.file("extdata/refs/hisat2_splice_sites.txt",
package="Rhisat2"),
header=FALSE, as.is=TRUE)
expect_equal(tmp, his)
## input in GRanges format
tmp <- tempfile()
gr <- readRDS(system.file("extdata/refs/genes.granges.rds",
package="Rhisat2"))
extract_splice_sites(features=gr,
outfile=tmp, min_length=5)
tmp <- read.delim(tmp, header=FALSE, as.is=TRUE)
his <- read.delim(system.file("extdata/refs/hisat2_splice_sites.txt",
package="Rhisat2"),
header=FALSE, as.is=TRUE)
expect_equal(tmp, his)
## input in TxDb format
tmp <- tempfile()
txdb <- GenomicFeatures::makeTxDbFromGFF(
system.file("extdata/refs/genes.gtf",
package="Rhisat2"))
extract_splice_sites(features=txdb,
outfile=tmp, min_length=5)
tmp <- read.delim(tmp, header=FALSE, as.is=TRUE)
his <- read.delim(system.file("extdata/refs/hisat2_splice_sites.txt",
package="Rhisat2"),
header=FALSE, as.is=TRUE)
expect_equal(tmp, his)
## unsupported input format
expect_error(extract_splice_sites(features="nonExistingFile.txt",
outfile=tmp, min_length=5))
expect_error(extract_splice_sites(features=1:3,
outfile=tmp, min_length=5))
expect_error(extract_splice_sites(features=system.file("extdata/refs/chr1.fa",
package="Rhisat2"),
outfile=tmp, min_length=5))
## input in gtf format, different chromosomes, get the same ordering as hisat2
tmp <- tempfile()
extract_splice_sites(features=system.file("extdata/refs/genes_diffchr.gtf",
package="Rhisat2"),
outfile=tmp, min_length=5)
tmp <- read.delim(tmp, header=FALSE, as.is=TRUE)
his <- read.delim(system.file("extdata/refs/hisat2_splice_sites_diffchr.txt",
package="Rhisat2"),
header=FALSE, as.is=TRUE)
expect_equal(tmp, his)
})
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.