R/read.table2.R

Defines functions read.table2

#' @title Function to read a text file 
#' @keywords internal
read.table2 <- function(file, header=F, data.table=F, check.names=TRUE, ...) {
  return(data.table::fread(file, header=header, data.table=data.table, 
                           check.names=check.names, ...))
}
MeriemBahda/LassosumExtension documentation built on May 16, 2024, 3:10 p.m.