1. Create a submit_*.py script
      Use as reference the existing submit_*.py scripts, like submit_cmdline.py.
    2. Update the qube.py script (to add a submit menu item):
      Search the code for use of "maya," as an example.
      1. Add along with the other imports:
      2. import submitscript
      3. Add a menu item for the submit script and bind a callback to it.
      4. Add the callback code for the menu item.
    3. Update the jobList.py (adds ability to right-click and resubmit)
      1. Add along with the other imports:
      2. import submitscript
      3. Register the jobs in the registeredJobs variable.
    4. The submit script should be able to be run directly from the command line like:
      python submitscript.py
    5. Launch QubeGUI and submit your job from under the Submit menu. Resubmit your job by right-clicking on it in the JobList panel.
    • No labels