Nothing
Sys.setenv(R_TESTS="")
test_that("test_tm_calculate failed", {
input_seq <- c("ATGCGATGCGAAGGCGATGGCGTGTAGAATAGATCACATACTGCATAGCTGATC", "ATGCGATGCGCCCGGAGATAGAAGGCGTAGATACAGATCAGTAGCACCTTGAGAC")
result <- tm_calculate(input_seq)
expect_equal(round(result$gr$Tm, 5), c(67.06562, 69.64434), tolerance = 0.1)
fasta_file <- system.file("extdata","BSgenome.Hsapiens.UCSC.hg38.fasta", package = "TmCalculator")
gr_tm <- tm_calculate(fasta_file)
expect_equal(
round(gr_tm$gr$Tm, 5)[c(1, 10, 50, 100, 141)],
c(76.57807, 72.88846, 70.04297, 67.24338, 75.47229),
tolerance = 0.1
)
})
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.