Closed logust79 closed 6 years ago
Hi @logust79
Thanks for your feedback.
I guess this is related to the hard-coded parameters in: https://github.com/cgat-developers/cgat-core/blob/master/CGATCore/Pipeline/Parameters.py#L67
We use several defaults that work in our SGE but won't in yours:
all.q
: submission queuededicated
: parallel environmentmem_free
: consumable resource for available memory per requested slotHere are the commands you need to get the correct value for those parameters in your SGE install:
# get list of submission queues
qconf -sql
# get list of parallel environments
qconf -spl
# get a list of all consumable resources
qconf -sc
You would need to create your own pipeline.yml
and configure those values correctly.
Best regards, Sebastian
PD: This should all be documented but it is not currently. I will be updating the docs after the code is ready for production.
Hi @sebastian-luna-valero
After adding the following line to pipeline.yml
it now works!
cluster:
memory_resource: tmem
parallel_environment: mpi
Many thanks! Jing
First of all, great work! I downloaded the core code and ran the tests and found the following errors. tldr: all of those related to
drmaa.errors.DeniedByDrmException: code 17: error: no suitable queues
I tested on a SGE cluster system. How can I solve it? Thanks, Jing