Skip to content

Commit

Permalink
quick fixes (#153)
Browse files Browse the repository at this point in the history
* quick fixes

* Removed unneeded change
  • Loading branch information
charles-cowart authored Oct 1, 2024
1 parent e0f5b63 commit b1249a3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions sequence_processing_pipeline/Job.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,9 @@ def wait_on_job_ids(self, job_ids, callback=None):
# them before returning, optionally submitting callbacks for each
# job-id.

# ensure all ids are strings to ensure proper working w/join().
job_ids = [str(x) for x in job_ids]

def query_slurm(job_ids):
# internal function query_slurm encapsulates the handling of
# squeue.
Expand Down

0 comments on commit b1249a3

Please sign in to comment.