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
// Set the memory required to the size of the database + 4GB overhead.
21
24
memory {
@@ -26,13 +29,18 @@ process run_kraken2 {
26
29
}
27
30
}
28
31
errorStrategy {
29
-
task.exitStatus ==137? log.error("Error 137 may indicate the process ran out of memory.\nIf you are using Docker you should check the amount of RAM allocated to your Docker server.") :''
32
+
task.exitStatus ==137? log.error(
33
+
'''
34
+
Error 137 may indicate the process ran out of memory.
35
+
If you are using Docker you should check the amount of
36
+
RAM allocated to your Docker server.
37
+
'''.stripIndent()) :''
30
38
log.error("Consider to use --kraken2_memory_mapping to reduce the use of RAM memory.")
0 commit comments