From 20450a118ef71f38e1add96d289788537695184e Mon Sep 17 00:00:00 2001 From: LTLA Date: Mon, 26 Feb 2024 09:00:17 -0800 Subject: [PATCH] Do not emit a warning when missing values are found. Just remove them and continue without the noise. We're already silently removing them in celldex so it doesn't make sense to be chatty here. --- R/utils.R | 1 - 1 file changed, 1 deletion(-) diff --git a/R/utils.R b/R/utils.R index 599fcfd..39ea03d 100644 --- a/R/utils.R +++ b/R/utils.R @@ -26,7 +26,6 @@ discard <- rowAnyNAs(DelayedArray(x)) if (any(discard)) { - warning(sprintf("'%s' contains rows with missing values", msg)) x <- x[!discard,,drop=FALSE] } }