Mike Dacre
Mike Dacre
I went back to university and am no longer working in a job where I can maintain this code actively. Depending on what my schedule is like I can make...
In all versions, torque does multiple dependencies with `-W depend=afterok:#:afterok:#` it must be `-W depend=afterok:#:#`: http://arc-ts.umich.edu/software/torque/pbs-job-dependencies/
There is actually no need to know what is in the queue until the Queue class is queried, so let's drop the update call from the Queue initialization. Also, each...
Currently max jobs are defined for the whole user. Implement a queue specific maximum as well as a the user specific maximum. This change will break the current API slightly....
The [ezqsub](https://github.com/MikeDacre/torque_queue_manager) project is old and out of date, but should be fairly easy to merge into here to allow batch job submission from a file.
When being run from a file, need to run `sys.path.append(file); from file import *; for function in file (including private) import function`
The [python-pipeline](https://github.com/MikeDacre/python-pipeline) project is an effort to make it easy to create complex pipelines with python. It isn't that useful outside of a multithreading environment, so it makes sense to...
If `track=True` in the job, job is written to a `_.job` file to be restored later
Alter scripts to write a 'done' file alongside output Also add `.succeeded` attribute to jobs, which pulls the done file
The `-p` filtering with `fyrd queue` does not work if `-a` is also specified.