Nothing
test_that("read_fasta", {
skip_on_cran()
fp <- tempfile(fileext = '.fna')
expect_error(read_fasta(fp))
expect_silent(write_fasta(c(a = 'atcg', a = 'atcg'), fp))
expect_error(read_fasta(fp))
expect_silent(write_fasta(c(a = 'atcg', b = 'atcg'), fp))
expect_error(read_fasta(fp, ids = c('b', 'c')))
expect_silent(read_fasta(fp, ids = c('b', 'a')))
})
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.