R/get_heightest_maf.R

Defines functions get_heighest_maf

Documented in get_heighest_maf

#' Get the highest value for a minor allelle frequency (MAF).
#'
#' Get the highest value for a minor allelle frequency (MAF).
#' which is the highest value possible below 0.5
#' @examples
#' get_heighest_maf()
#' @author Richèl J.C. Bilderbeek
#' @export
get_heighest_maf <- function() {
  0.5 - .Machine$double.eps
}
richelbilderbeek/plinkr documentation built on March 25, 2024, 3:18 p.m.