We are trying to test out a way to fix this issue.
Would you mind trying to run a few lines of code (outside of Wallace) and seeing if you get an error? I expect r1 not to work, but let me know if r2, r3, and r4 don't work for you as well. Thanks!
library(raster)
n <- 0.1666667*60
r1 <- raster::getData('CMIP5', var = "bio", res = n,
rcp = 60, model = "CC",
year = 50)
r2 <- raster::getData('CMIP5', var = "bio", res = round(n, 1),
rcp = 60, model = "CC",
year = 70)
r3 <- raster::getData('CMIP5', var = "bio", res = as.integer(n),
rcp = 45, model = "CC",
year = 50)
r4 <- raster::getData('CMIP5', var = "bio", res = round(n * 10)/10,
rcp = 85, model = "CC",
year = 50)