# Sample Rprofile.site file

# Things you might want to change
# options(papersize="a4")
# options(editor="notepad")
# options(pager="internal")

# R interactive prompt
# options(prompt="> ")
# options(continue="+ ")

# to prefer Compiled HTML
# help options(chmhelp=TRUE)
# to prefer HTML help
# options(htmlhelp=TRUE)

# General options
#options(tab.width = 2)
#options(width = 130)
#options(graphics.record=TRUE)

.First <- function(){
  library(devtools)
#  library(grDevices)
#  library(Biostrings)
#  library(Rsamtools)
#  library(ShortRead)
#  load_all()
  cat("\nWelcome at", date(), "\n")
}

.Last <- function(){
  cat("\nGoodbye at ", date(), "\n")
}
