R/base_fast.read.table.R

#fast read table function
.fast.read.table = function(file, nrow){
  # read contents
  countC <- scan( file = file, what = character(), sep = "\t", skip = 0 )
  countC1 <- matrix( countC, nrow, byrow = TRUE )
  return(countC1)
} 
yzheng74/permseq documentation built on May 4, 2019, 8:47 p.m.