Last active
February 15, 2016 20:00
-
-
Save kylebaron/97a4d81841db9b45bc7f to your computer and use it in GitHub Desktop.
Run a model in project directory with no spaces
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(mrgsolve) | |
## Create a project directory with no spaces in the path | |
proj <- "c:/my_mrgsolve_models" | |
if(!file.exists(proj)) dir.create(proj) | |
code <- ' | |
$PARAM KE = 0.1 | |
$CMT CENT | |
$ODE dxdt_CENT = -KE*CENT; | |
' | |
mod <- mread(code=code, model="test", project=proj) | |
project(mod) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Releases after
0.5.002
should have the spaces issue fixed.