Guest User

Untitled

a guest
Oct 23rd, 2017
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. catt("\n", A_scriptname, " started\n")
  2. catt("-----------------------------------------------------\n")
  3. catt <- define.catt(nspace=2)
  4.  
  5. ##### libraries needed here #####
  6. inst.load.packages("GEOquery", inst.bioclite = TRUE)
  7.  
  8. ##### function to be applied here #####
  9. get.lenz <- function(rdafile){
  10.  
  11. }
  12.  
  13. ##### apply the function only if the given .rda does NOT exist #####
  14. currentCodechunk <- file.path(A_RDA.DIR, "Lenz.rda")
  15. if(!file.exists(currentCodechunk)){
  16. tmp <- get.lenz(currentCodechunk)
  17. save(tmp, file=currentCodechunk)
  18. }else{
  19. load(currentCodechunk)
  20. }
  21.  
  22.  
  23. catt <- define.catt()
  24. catt("-----------------------------------------------------\n")
  25. catt(A_scriptname, " finished\n")
Add Comment
Please, Sign In to add comment