Skip to content

Commit

Permalink
Do not emit a warning when missing values are found.
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
LTLA committed Feb 26, 2024
1 parent 5603599 commit 20450a1
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion R/utils.R
Expand Up @@ -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]
}
}
Expand Down

0 comments on commit 20450a1

Please sign in to comment.