drmaa-python
drmaa-python copied to clipboard
Python wrapper around the C DRMAA library.
Some DRMAA implementations print information to `stdout`/`stderr`. While this information can be useful, having it print to `stderr` or `stdout` can be disruptive (e.g. launching jobs with DRMAA in an...
add -clear parameter in , we got problem as title said. remove -clear parameter, everything went well. please give me some clue about this issue. THANKS. script: #!/usr/bin/env python import...
Hi I'm trying to run a batch job utilizing the --array slurm option. Wondering if this is possible using drmaa-python. I know there is a runBulkJobs(...), however it seems that...
When I run a script on an HPC with a scheduler such as SGE, my script might contain flags like these: ```bash #!/bin/bash #$ -pe openmpi 32 #$ -A TensorFlow...
Currently blocked on: https://github.com/travis-ci/travis-ci/issues/3773#issuecomment-123562600
I am running this script: ``` python with drmaa.Session() as s: jt = s.createJobTemplate() jt.remoteCommand = "python" jt.args = ['env.py'] jt.jobEnvironment = {'ALEX':'alex=2'} jt.joinFiles=True jobid = s.runJob(jt) s.deleteJobTemplate(jt) ``` with...
It has been almost 3 years since I worked somewhere that used a DRMAA grid computation system, so I am not the best person to maintain this anymore. @desilinguist, I...
Currently, the scripts in the examples directory haven't been touched for many years. The [RTD tutorial](http://drmaa-python.readthedocs.org/en/latest/tutorials.html) is much more up-to-date.
In the application I develop on, [we delay importing drmaa](https://github.com/galaxyproject/galaxy/blob/1e3bd2d4e831331b8e3b314bac287288fa4533fc/lib/galaxy/jobs/runners/drmaa.py#L55) so that `$DRMAA_LIBRARY_PATH` can be set in the application config. We also [map the state constants to corresponding strings](https://github.com/galaxyproject/galaxy/blob/1e3bd2d4e831331b8e3b314bac287288fa4533fc/lib/galaxy/jobs/runners/drmaa.py#L75). We're...
I am having trouble running examples/example5.py. When it gets to s.jobStatus(jobid) I get a "segmentation fault". Every other example seems to work. I can see nodes created and I get...