From c37cf845c0a339d257e049d1ac82aaef44f1ac13 Mon Sep 17 00:00:00 2001 From: "Brian M. Schilder" <34280215+bschilder@users.noreply.github.com> Date: Thu, 2 Mar 2023 19:30:10 +0000 Subject: [PATCH] Fix plot_celltype_associations for mac --- R/plot_celltype_associations.r | 3 ++- man/plot_celltype_associations.Rd | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/R/plot_celltype_associations.r b/R/plot_celltype_associations.r index 8fe1d7d..6ca8bd7 100644 --- a/R/plot_celltype_associations.r +++ b/R/plot_celltype_associations.r @@ -32,7 +32,8 @@ #' ctAssocs <- MAGMA.Celltyping::enrichment_results[[1]]$ctAssocsLinear #' ctd <- ewceData::ctd() #' figs <- plot_celltype_associations(ctAssocs = ctAssocs, -#' ctd = ctd) +#' ctd = ctd, +#' savePDF = FALSE) plot_celltype_associations <- function(ctAssocs, ctd, useSignificanceLine = TRUE, diff --git a/man/plot_celltype_associations.Rd b/man/plot_celltype_associations.Rd index 67e6a36..8198d01 100644 --- a/man/plot_celltype_associations.Rd +++ b/man/plot_celltype_associations.Rd @@ -66,5 +66,6 @@ Can take input from either ctAssocs <- MAGMA.Celltyping::enrichment_results[[1]]$ctAssocsLinear ctd <- ewceData::ctd() figs <- plot_celltype_associations(ctAssocs = ctAssocs, - ctd = ctd) + ctd = ctd, + savePDF = FALSE) }