Skip to content

Commit 4608c18

Browse files
committed
fix: output formulas as strings
1 parent 75e7628 commit 4608c18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/qualitative_networks.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ function qn_to_bma_dict(qn::QN{N,S,M}) where {N,S,C,G,L<:EntityIdName,M<:MetaGra
775775
"RangeFrom" => d[1],
776776
"RangeTo" => d[2],
777777
"Id" => i,
778-
"Formula" => f,
778+
"Formula" => string(f),
779779
"Name" => n,
780780
) for (d, i, n, f) in zip(lower_upper, ids, entity_names, functions)
781781
]

0 commit comments

Comments
 (0)