Skip to content

Commit

Permalink
missing a parens
Browse files Browse the repository at this point in the history
  • Loading branch information
nikellepetrillo committed Nov 4, 2024
1 parent 3a3b0ad commit 8012be2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion verification/VerifyTasks.wdl
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ def compare_metrics(test_file, truth_file):
# Calculate the allowable difference based on the threshold
allowable_diff = value_b * threshold
if diff > allowable_diff:
print(f"Error: Metric {metric_a} exceeds threshold. Test value: {value_a}, Truth value: {value_b}, Threshold: {threshold*100}%. The allowable difference is {allowable_diff} and the actual difference is {diff}.
print(f"Error: Metric {metric_a} exceeds threshold. Test value: {value_a}, Truth value: {value_b}, Threshold: {threshold*100}%. The allowable difference is {allowable_diff} and the actual difference is {diff}.)
exit_code = 1
else:
print(f"Metric {metric_a} is within the threshold.")
Expand Down

0 comments on commit 8012be2

Please sign in to comment.