I have added code that takes in r-styled config files, translates the…#2
Open
shelleylwang wants to merge 2 commits into
Open
I have added code that takes in r-styled config files, translates the…#2shelleylwang wants to merge 2 commits into
shelleylwang wants to merge 2 commits into
Conversation
…m into python styling, then proceeds with running the program
…rectly constructed with duplicate directories
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
…m into python styling, then proceeds with running the program
Every time you use "DeepDiveR" to create the config.ini file, it creates the file with R-style content (things like "area_end = c(60..." or using "NA" instead of "None")
Then you try to run the deepdive simulations with the deepdive program, which is all written in python, and doesn’t handle the fact that the input config.ini file is in R-style. This issue was causing simulations to freeze at “Running simulation 1 of 100”
I added code that takes in the config file and translates any R-style into python. I tested this again by running my R-styled config file using this new code, and the freeze error did not occur