From ff6bf45cc0fb8f97600e5e289a7eeaafbbef51cf Mon Sep 17 00:00:00 2001 From: olapuentesantana Date: Mon, 29 Apr 2024 16:38:32 +0200 Subject: [PATCH] fixed typo --- R/compute_pathway_activity.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/compute_pathway_activity.R b/R/compute_pathway_activity.R index 921c909..54642aa 100644 --- a/R/compute_pathway_activity.R +++ b/R/compute_pathway_activity.R @@ -66,7 +66,7 @@ compute_pathway_activity <- function(RNA_counts = NULL, remove_sig_genes_immune_response = TRUE, verbose = TRUE) { # Some checks - if (is.null(RNA_tpm)) stop("TPM gene expression data not found") + if (is.null(RNA_counts)) stop("Count gene expression data not found") # Retrieve internal data cor_scores_genes <- suppressMessages(easierData::get_cor_scores_genes())