From 52529f331a924ee64f0ff281ebf5eac4db3ede57 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miguel=20=C3=81lvarez=20Herrera?= Date: Wed, 11 Feb 2026 13:00:55 +0100 Subject: [PATCH] fix: init missing columns Fixes error introduced in c12cf2a48 --- workflow/scripts/report/af_time_correlation_data.R | 2 ++ 1 file changed, 2 insertions(+) diff --git a/workflow/scripts/report/af_time_correlation_data.R b/workflow/scripts/report/af_time_correlation_data.R index e95abff..64ad974 100644 --- a/workflow/scripts/report/af_time_correlation_data.R +++ b/workflow/scripts/report/af_time_correlation_data.R @@ -63,6 +63,8 @@ unique.snps <- unique(variants$VARIANT_NAME) # Create an empty dataframe to be filled cor.df <- data.frame( variant = "", + min_af = 0, + max_af = 0, coefficient = 0, p.value = 0, p.value.adj = 0