#' Read a \code{PLINK}/\code{PLINK2} \code{.fam} file
#' @inheritParams default_params_doc
#' @author Richèl J.C. Bilderbeek
#' @export
read_plink_fam_file <- function(
fam_filename,
verbose = FALSE
) {
testthat::expect_true(file.exists(fam_filename))
suppressWarnings(
fam_table <- genio::read_fam(fam_filename, verbose = verbose)
)
fam_table
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.