Skip to content
Snippets Groups Projects
Commit dcc3f99e authored by Todor Kondić's avatar Todor Kondić
Browse files

new_runtime_state: Stop it from complaining about existing `metfrag' dir.

parent 0f772b2a
No related branches found
No related tags found
No related merge requests found
...@@ -94,7 +94,7 @@ new_runtime_state <- function(project,envopts,conf=NULL) { ...@@ -94,7 +94,7 @@ new_runtime_state <- function(project,envopts,conf=NULL) {
## If MetFrag possible, set up the file structure. ## If MetFrag possible, set up the file structure.
if (metfrag$cando_metfrag) { if (metfrag$cando_metfrag) {
mfdir = file.path(project_path,"metfrag") mfdir = file.path(project_path,"metfrag")
dir.create(mfdir) dir.create(mfdir, showWarnings = F)
metfrag$path=mfdir metfrag$path=mfdir
subpaths = list(results = "results", subpaths = list(results = "results",
config = "config", config = "config",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment