R/getIncludeColumns.R

Defines functions getIncludeColumns

Documented in getIncludeColumns

#' Get the superset of columns that can be in a pedigree file.
#'
## Copyright(c) 2017-2024 R. Mark Sharp
## This file is part of nprcgenekeepr
#' Part of Genetic Value Functions
#'
#' Replaces INCLUDE.COLUMNS data statement.
#'
#' @return Superset of columns that can be in a pedigree file.
#'
#' @export
#' @examples
#' getIncludeColumns()
getIncludeColumns <- function() {
  c(
    "id", "sex", "age", "birth", "exit", "population", "condition", "origin",
    "first_name", "second_name"
  )
}

Try the nprcgenekeepr package in your browser

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

nprcgenekeepr documentation built on June 8, 2025, 10:55 a.m.