https://github.com/KLRhodes/Embryoid_Body_Pilot_Workflowr
Raw File
Tip revision: 3d3fa9b4e0a96ea840009b62107d47e464e08c11 authored by KLRhodes on 13 December 2021, 23:23:06 UTC
Build site.
Tip revision: 3d3fa9b
.Rprofile
## This makes sure that R loads the workflowr package
## automatically, everytime the project is loaded
if (requireNamespace("workflowr", quietly = TRUE)) {
  message("Loading .Rprofile for the current workflowr project")
  library("workflowr")
} else {
  message("workflowr package not installed, please run install.packages(\"workflowr\") to use the workflowr functions")
}
back to top