context("Testing add_trajectory")
id <- "a"
cell_ids <- c("truth", "universally", "acknowledged", "that", "a", "single")
milestone_ids <- c("man", "in", "possession", "of", "good", "fortune", "must")
milestone_network <- tribble(
~from, ~to, ~length, ~directed,
"man", "in", 1, TRUE,
"in", "possession", 2, TRUE,
"in", "of", 3, TRUE,
"possession", "good", 4, TRUE,
"of", "fortune", 5, TRUE,
"good", "must", 6, TRUE,
"fortune", "must", 7, TRUE
)
milestone_percentages <- tribble(
~cell_id, ~milestone_id, ~percentage,
"truth", "man", .8,
"truth", "in", .2,
"universally", "in", .3,
"universally", "possession", .2,
"universally", "of", .5,
"acknowledged", "possession", 0,
"acknowledged", "good", 1,
"that", "good", .5,
"that", "must", .5,
"a", "good", .9,
"a", "must", .1,
"single", "fortune", .6,
"single", "must", .4
)
divergence_regions <- tribble(
~divergence_id, ~milestone_id, ~is_start,
"be", "in", TRUE,
"be", "possession", FALSE,
"be", "of", FALSE
)
trajectory <- wrap_data(
id = id,
cell_ids = cell_ids
) %>% add_trajectory(
milestone_network = milestone_network,
divergence_regions = divergence_regions,
milestone_percentages = milestone_percentages
)
test_that("Testing add_trajectory with milestone_percentages", {
gathered_trajectory <- gather_cells_at_milestones(trajectory)
testthat::expect_equal(unique(gathered_trajectory$milestone_percentages$percentage), 1)
testthat::expect_equal(gathered_trajectory$milestone_percentages$milestone_id, c("good", "good", "fortune", "good", "man", "of"))
})
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.