From ee01a61816721b6ce09d4e3e21fbb7a76af47887 Mon Sep 17 00:00:00 2001 From: Brian Palmer Date: Mon, 2 Dec 2024 15:16:44 -0800 Subject: [PATCH] add boxname parameter to check_cryovial_barcodes_exist --- R/ValidateSpecimens.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/ValidateSpecimens.R b/R/ValidateSpecimens.R index 80ec9b2..c11c38f 100644 --- a/R/ValidateSpecimens.R +++ b/R/ValidateSpecimens.R @@ -1225,7 +1225,7 @@ validate_cryovial_uploads <- function(cryovial_test) { #' @return A list object containing validation errors, if any. #' @keywords validation validate_cryovial_moves <- function(cryovial_test) { - cryovial_test(check_cryovial_barcodes_exist, "Barcode", error_if_exists = FALSE) + cryovial_test(check_cryovial_barcodes_exist, "Barcode", "BoxName", error_if_exists = FALSE) cryovial_test(check_cryovial_box_exists, "BoxName", "BoxBarcode") }