R/qc_imaging.R

Defines functions qc_imaging

#' qc_imaging
#'
#' @param fov_counted [[numeric]] Values from "lane_FovCounted" in the RCC files.
#' @param fov_count [[numeric]] Values from "lane_FovCount" in the RCC files.
#'
#' @keywords internal
#' @usage NULL
#' @noRd
#'
#' @return [[numeric]]
qc_imaging <- function(fov_counted, fov_count) {
  fov <- (fov_counted / fov_count) * 100
  round(fov, 2)
}

Try the NACHO package in your browser

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

NACHO documentation built on Aug. 8, 2023, 1:08 a.m.