Nothing
# remove fragments --------------------------------------------------------
testthat::test_that("remove fragments", {
gm_raw <- trace::example_data
metadata <- trace::metadata
# Save raw data as a fragment class
suppressWarnings(
test_fragments <- peak_table_to_fragments(
gm_raw,
data_format = "genemapper5",
dye_channel = "B",
min_size_bp = 300
)
)
all_fragment_names <- names(test_fragments)
samples_to_remove <- all_fragment_names[c(1, length(all_fragment_names))]
samples_removed <- remove_fragments(test_fragments, samples_to_remove)
testthat::expect_true(all(!names(samples_removed) %in% samples_to_remove))
})
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.