R/plot_linearised_comparison.R

Defines functions plot_linearised_comparison

Documented in plot_linearised_comparison

#' Compare two trajectories as a pseudotime scatterplot
#'
#' @param traj1 The first trajectory
#' @param traj2 The second trajectory
#' @param reorder Whether to reorder the trajectory
#' @param reorder_second_by How to reorder the second trajectory, either by mapping the milestones from both trajectories (`mapping`), or by trying to correlate the orderings between the two trajectories (`optimisation`)
#'
#' @inheritParams linearise_cells
#'
#' @keywords compare_trajectory
#'
#' @export
#' @importFrom patchwork wrap_plots
#'
#' @returns A scatterplot comparison ggplot of two linearised trajectories.
#'
#' @examples
#' data(example_bifurcating)
#' plot_linearised_comparison(example_bifurcating, example_bifurcating)
plot_linearised_comparison <- function(
  traj1,
  traj2,
  reorder = TRUE,
  margin = 0.05,
  reorder_second_by = c("mapping", "optimisation")
) {
  # make sure a trajectory was provided
  assert_that(
    dynwrap::is_wrapper_with_trajectory(traj1),
    dynwrap::is_wrapper_with_trajectory(traj2)
  )

  reorder_second_by <- match.arg(reorder_second_by)
  if (reorder) {
    # make sure the order of the milestone_networks stay the same between the connection plots and the strip plots, therefore we already sort them here
    traj1$milestone_network <- optimize_order(traj1$milestone_network)
    if (reorder_second_by == "mapping") {
      traj2$milestone_network <- map_order(traj2, traj1)
    } else if (reorder_second_by == "optimization") {
      traj2$milestone_network <- optimize_order(traj2$milestone_network)
    }
  }

  empty_max <- function(x) {
    if (length(x) > 0) {
      max(x)
    } else {
      0
    }
  }

  strip_plot <- plot_strip(traj1, traj2, reorder = FALSE, margin = margin)

  onedim_plot1 <- plot_onedim(traj1, orientation = -1)
  onedim_plot2 <- plot_onedim(traj2, orientation = -1) + coord_flip()

  patchwork::wrap_plots(
    onedim_plot2,
    strip_plot,
    empty_plot(),
    onedim_plot1,
    ncol = 2,
    widths = c(1, 10),
    heights = c(10, 1)
  )
}

Try the dynplot package in your browser

Any scripts or data that you put into this service are public.

dynplot documentation built on Dec. 11, 2021, 9:33 a.m.