-
Notifications
You must be signed in to change notification settings - Fork 2
Closed
Labels
questionFurther information is requestedFurther information is requested
Description
Lines 66 to 74 in f32e09d
| if(!file.exists(user_db)){ | |
| warning("No user database found. New database will be created") | |
| db_create(get_review_data(data), db_path = user_db) | |
| } else{ | |
| # Skip if not needed for faster testing: | |
| if(isTRUE(get_golem_config("app_prod"))){ | |
| db_update(get_review_data(data), db_path = user_db) | |
| } | |
| } |
Why is the database creation and updating not part of the preprocessing? It seems like since we already require the creation of the study data and meta data that it makes sense to update the database when study data is created, not every time the application is run.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested