We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bb2bdd4 + 31960f3 commit 99a69f8Copy full SHA for 99a69f8
templates/galaxy/config/tpv_rules_meta.yml.j2
@@ -7,9 +7,11 @@ tools:
7
mem: cores * 4
8
env:
9
- name: GALAXY_SLOTS
10
- value: "{cores}"
+ value: cores
11
- name: GALAXY_MEMORY_MB
12
- value: "{int(mem)*1000}"
+ value: mem * 1000
13
+ - name: GALAXY_MEMORY_MB_PER_SLOT
14
+ value: int(mem / cores) * 1000
15
context:
16
walltime: 24
17
scratch: 50
@@ -127,10 +129,15 @@ tools:
127
129
.*/data_manager_.*:
128
130
inherits: local_sing_running_tools
131
132
+ .*/hapog/.*:
133
+ cores: 8
134
+ context:
135
+ walltime: 48
136
+
137
roles:
138
training.*:
139
max_cores: 4
- max_mem: max_cores * 4 # TODO check multiplier
140
+ max_mem: max_cores * 4
141
scheduling:
142
require:
143
- pulsar
0 commit comments