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
# Limit the amount of memory the VEP Python process uses, expressed in KiB.
864
+
# If we don't do this it seems that the Batch agent is often (though not always) starved for memory and
865
+
# unable to check in with the Batch service. If this happens the job fails for reasons that appear to
866
+
# Cromwell to be unretryable, and thus the whole workflow fails. e.g.
867
+
#
868
+
# Task GvsCreateVATfromVDS.GenerateVepAndLofteeAnnotations:150:4 failed. The job was stopped before the command finished. GCP Batch task exited with VMReportingTimeout(50002).
869
+
#
870
+
ulimit-m$vep_memory_kib
871
+
set +oerrexit
842
872
vep"${args[@]}"
843
-
echo"VEP + LOFTEE run complete."
873
+
set-oerrexit
874
+
875
+
VEP_RC=$?
876
+
if (( VEP_RC==137 ))
877
+
then
878
+
# Cromwell does not currently consider the value in the rc file when determining retryability, though
0 commit comments