#' Ratio of variance of binomial RVs
#'
#' @param p1 maf study 1
#' @param p2 maf study 2
#' @return Returned is denominator of IVW-uplift.
#' @export
var_ratio = function(p1, p2){
return(p1*(1-p1)/(p2*(1-p2)))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.