Raphaël Robidas
Raphaël Robidas
1. Yes, there are more parameters that need to be validated. However, you shouldn't have to worry too much about it, just use the functions that verify all the relevant...
Actually, you should use `parse_parameters` in order to get the parameters. That will give you most parameters you will need to construct a dummy Calculation object (not an actual database...
@anchalm03 You can create the class in `helpers.py`, that seems to be the most logical location.
@anchalm03 1. It would be best to use `calc_to_ccinput`, so the processing is exactly the same in the preview and in the real input generation. 2. I just had a...
You should change all the object creations in `_submit_calculation`. You will notice that I have a `verify` parameter and some code blocks starting with `if not verify:`. I added this...
Yes, but make sure that no object is created in another function call or something like that.
@anchalm03 It seems like Django wants objects to be saved in a specific order. If you preserve the order in which objects were created (just appending to an array should...
Are you sure you did not miss any of the objects created in `_submit_calculation`? I tested a simple case and it works when the referenced object is saved: ``` calcus@web:/calcus$...
The scripts that are "not found" use csh. I had the same issue and fixed it by installing csh.
Thanks for the info both of you! @jacobtomlinson I did not know about Prefect, it sounds like exactly what I need at this stage. Looks like I have a huge...