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.
nrn_run
1 parent 5c2050d commit fc73f08Copy full SHA for fc73f08
modeldb/report.py
@@ -59,7 +59,10 @@ def diff_reports(report1_json, report2_json):
59
curated_a = curate_run_data(data_a[k]["nrn_run"], model=int(k))
60
curated_b = curate_run_data(data_b[k]["nrn_run"], model=int(k))
61
if curated_a != curated_b:
62
- diff_dict[k] = hd.make_table(curated_a, curated_b, context=True).replace("\n", " ")
+ diff_dict[k] = hd.make_table(curated_a, curated_b,
63
+ fromdesc=data_a[k]["run_info"]["start_dir"],
64
+ todesc=data_b[k]["run_info"]["start_dir"],
65
+ context=True).replace("\n", " ")
66
67
# List of keys that make gout comparison pointless
68
skip_gout_keys = {"do_not_run", "moderr", "nrn_run_err"}
0 commit comments