R/utils-validation.R

Defines functions check_fields check_homozygous_count check_logical_flag check_loci check_data_frame check_gl_string

# Internal validation helper functions for immunogenetr
# These are not exported; they provide consistent input checking across the package.

#' @importFrom cli cli_abort
#' @importFrom rlang caller_env

# Validate that a GL string argument is a non-empty character vector.
# Allows NA values within the vector (handled downstream), but rejects
# NULL, non-character types, and zero-length input.
check_gl_string <- function(x, arg_name = "data", call = caller_env()) {
  # NULL check
  if (is.null(x)) {
    cli_abort("{.arg {arg_name}} must be a character vector, not {.cls NULL}.", call = call)
  }
  # Allow bare NA (logical) by treating it as NA_character_; a scalar NA or

  # vector of all NA is a valid "no data" input that downstream code handles.
  if (is.logical(x) && all(is.na(x))) {
    return(invisible(x))
  }
  # Type check
  if (!is.character(x)) {
    cli_abort("{.arg {arg_name}} must be a character vector, not {.cls {class(x)}}.", call = call)
  }
  # Length check
  if (length(x) == 0) {
    cli_abort("{.arg {arg_name}} must have length >= 1, not 0.", call = call)
  }
  invisible(x)
}

# Validate that a data argument is a non-empty data frame.
check_data_frame <- function(x, arg_name = "data", call = caller_env()) {
  # NULL check
  if (is.null(x)) {
    cli_abort("{.arg {arg_name}} must be a data frame, not {.cls NULL}.", call = call)
  }
  # Type check
  if (!is.data.frame(x)) {
    cli_abort("{.arg {arg_name}} must be a data frame, not {.cls {class(x)}}.", call = call)
  }
  # Row check
  if (nrow(x) == 0) {
    cli_abort("{.arg {arg_name}} must have at least one row.", call = call)
  }
  invisible(x)
}

# Validate that a loci argument is a non-empty character vector of locus names.
check_loci <- function(x, arg_name = "loci", call = caller_env()) {
  # NULL check
  if (is.null(x)) {
    cli_abort("{.arg {arg_name}} must be a character vector of locus names, not {.cls NULL}.", call = call)
  }
  # Type check
  if (!is.character(x)) {
    cli_abort("{.arg {arg_name}} must be a character vector, not {.cls {class(x)}}.", call = call)
  }
  # Length check
  if (length(x) == 0) {
    cli_abort("{.arg {arg_name}} must have length >= 1, not 0.", call = call)
  }
  invisible(x)
}

# Validate that a scalar logical argument is TRUE or FALSE (not NA, NULL, or non-logical).
check_logical_flag <- function(x, arg_name, call = caller_env()) {
  if (is.null(x) || !is.logical(x) || length(x) != 1 || is.na(x)) {
    cli_abort("{.arg {arg_name}} must be {.val TRUE} or {.val FALSE}.", call = call)
  }
  invisible(x)
}

# Validate that homozygous_count is 1 or 2.
check_homozygous_count <- function(x, call = caller_env()) {
  if (is.null(x) || length(x) != 1 || !x %in% c(1, 2)) {
    cli_abort("{.arg homozygous_count} must be {.val 1} or {.val 2}.", call = call)
  }
  invisible(x)
}

# Validate that fields is an integer between 1 and 4.
check_fields <- function(x, call = caller_env()) {
  if (is.null(x) || length(x) != 1 || !x %in% 1:4) {
    cli_abort("{.arg fields} must be an integer between 1 and 4.", call = call)
  }
  invisible(x)
}

Try the immunogenetr package in your browser

Any scripts or data that you put into this service are public.

immunogenetr documentation built on April 14, 2026, 5:08 p.m.