You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be good to add inputDir and outputDir variables to the config file (similar to whats in the snakefile) that all the scripts call. That way if we ever change directory naming its not a tedious task where we have to change paths in all the scrips
ie. Instead of having
in the config.yaml file we would have: outputDir = '../src/data/
then the script would read in the value from the config file and the line would be (checking syntax of creating the file path like that) df.to_csv(outputDir + 'SpecifiedDemandProfile.csv', index=False)
The text was updated successfully, but these errors were encountered:
It would be good to add inputDir and outputDir variables to the config file (similar to whats in the snakefile) that all the scripts call. That way if we ever change directory naming its not a tedious task where we have to change paths in all the scrips
ie. Instead of having
in the config.yaml file we would have:
outputDir = '../src/data/
then the script would read in the value from the config file and the line would be (checking syntax of creating the file path like that)
df.to_csv(outputDir + 'SpecifiedDemandProfile.csv', index=False)
The text was updated successfully, but these errors were encountered: