From 78e25c22f154bd8f819394182dfc486aa96f9386 Mon Sep 17 00:00:00 2001 From: rmflight Date: Wed, 28 Feb 2024 10:55:25 -0500 Subject: [PATCH] a typo --- DESCRIPTION | 2 +- R/combine_enrichments.R | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index a8fa948..98fc36e 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,5 +1,5 @@ Package: categoryCompare2 -Version: 0.100.12 +Version: 0.100.13 Title: Meta-Analysis of High-Throughput Experiments Using Feature Annotations Author: Robert M. Flight diff --git a/R/combine_enrichments.R b/R/combine_enrichments.R index 4fde843..2d77b88 100644 --- a/R/combine_enrichments.R +++ b/R/combine_enrichments.R @@ -587,7 +587,7 @@ setMethod("extract_statistics", signature = list(in_results = "combined_enrichme extract_enrich_stats = function(enrichment_result) { stats = as.data.frame(enrichment_result@statistics@statistic_data) - stats$ID = enrichment_results@statistics@annotation_id + stats$ID = enrichment_result@statistics@annotation_id stats$description = enrichment_result@annotation@description[stats$ID] return(stats) }