R/get_pooled_sample_df.R

Defines functions get_pooled_sample_df

Documented in get_pooled_sample_df

#' Returns dataframe with animal Ids, cage location, bleed date, whether not a
#' blood sample was expected, whether or not a sample was received, and the
#' Pool Id number.
#'
#' @param path charcter vector of length 1 having the path section of the
#' fully qualified file name.
#' @import stringi
#' @export
get_pooled_sample_df <- function(path) {
  sample_df <- get_sample_df(path)
  sample_df[sample_df$pooled == "Y", ]
}
rmsharp/snprcspf documentation built on June 15, 2020, 11:21 a.m.