You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GA has been using a rule borrowed from Galaxy Main for calculating memory for bwa_mem2 jobs but it has been removed because some jobs run out of memory.
- id: bwa_mem2_history_reference_rule
# This rule is copied from usegalaxy.org with bwa_mem2_max_mem increased from 120 to 250
# See https://github.com/galaxyproject/usegalaxy-playbook/blob/5be90699d922c85228836a5a974b05cfd08a6c4b/env/common/templates/galaxy/config/tpv/tools_vgp.yaml.j2#L217C1-L224C93
if: |
helpers.job_args_match(job, app, {"reference_source": {"reference_source_selector": "history"}})
# per https://github.com/bwa-mem2/bwa-mem2/issues/41 it's 28 * reference
mem: |
bwa_mem2_max_mem = 250
options = job.get_param_values(app)
size = options["reference_source"]["ref_file"].get_size()
min(max(float(size/1024**3) * 28, (input_size - float(size/1024**3)) * 2, 7.6), bwa_mem2_max_mem)
GA has been using a rule borrowed from Galaxy Main for calculating memory for bwa_mem2 jobs but it has been removed because some jobs run out of memory.
oom job 1:
mem value assigned: 96.60GB
oom job 2:
mem value assigned: 18.29GB
The text was updated successfully, but these errors were encountered: