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, ...))
}
yingxi-kaylee/ssCTPR documentation built on Nov. 14, 2021, 5:24 a.m.