R/read_structure.R

Defines functions read_structure

Documented in read_structure

#' Title
#'
#' Description
#'
#' Details
#'
#' @param structure_file To be completed
#'
#' @return To be completed
#' @export
#'
#' @examples
#' NULL
#'
read_structure <- function(structure_file) {
  # There should be some input checking here
    structure_data <- read.table(structure_file)
    return(structure_data)
}
malemay/HaplotypeMiner documentation built on Feb. 6, 2024, 3:29 a.m.