R/read.table2.R

Defines functions read.table2

Documented in 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, ...))
}
tshmak/lassosum documentation built on Sept. 24, 2020, 9:41 a.m.