Update process_data.py
Browse files- process_data.py +5 -0
process_data.py
CHANGED
|
@@ -347,6 +347,11 @@ def process_specifications(input_data, parameters):
|
|
| 347 |
3 processed data-filled JSON objects: farm_pretty_json, interactions_pretty_json, trial_pretty_json
|
| 348 |
"""
|
| 349 |
print("Processing specifications")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 350 |
# here is where parsing and other things will happen before
|
| 351 |
if input_data["stepwise_json_creation"] == "stepwisejsoncreation":
|
| 352 |
print("You are continuing with stepwise json creation")
|
|
|
|
| 347 |
3 processed data-filled JSON objects: farm_pretty_json, interactions_pretty_json, trial_pretty_json
|
| 348 |
"""
|
| 349 |
print("Processing specifications")
|
| 350 |
+
print("Here is also the input data")
|
| 351 |
+
print(input_data)
|
| 352 |
+
print("Here is also the parameters")
|
| 353 |
+
print(parameters)
|
| 354 |
+
|
| 355 |
# here is where parsing and other things will happen before
|
| 356 |
if input_data["stepwise_json_creation"] == "stepwisejsoncreation":
|
| 357 |
print("You are continuing with stepwise json creation")
|