Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. fusionfil<-function(ruta){
  2. require(data.table)
  3. fusionfrag<-paste0(ruta,grep("_filt",dir(ruta),value = TRUE))
  4.  
  5. datalist<-list()
  6.  
  7. for(frag in fusionfrag){
  8. datalist[[frag]] <- fread(frag,colClasses="character")
  9. }
  10.  
  11. datalist<-do.call(rbind,datalist)
  12.  
  13. fwrite(datalist,"fusion.csv")
  14. }
  15.  
  16. Warning messages:
  17. 1: In rbindlist(l, use.names, fill, idcol) :
  18. Reached total allocation of 8082Mb: see help(memory.size)
  19. 2: In rbindlist(l, use.names, fill, idcol) :
  20. Reached total allocation of 8082Mb: see help(memory.size)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement