Skip to content

Commit

Permalink
Update CyGraph viz function
Browse files Browse the repository at this point in the history
  • Loading branch information
omaus committed Dec 8, 2023
1 parent 30a9afd commit 3329967
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ARCExpect/ARCGraph.fs
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ module ARCGraph =
toFullCyGraph
//(fun (h,n) -> $"{h}, {n}") // when using hash * accession or hash * name
id // when using only accession or name
(fun (d : IParam seq) -> $"{(Seq.head d).Name}: {(Seq.head d).Value |> ParamValue.getValueAsString}")
(fun (d : IParam seq) -> $"""{(Seq.head d).Name}: {(Seq.map (fun (lil : IParam) -> lil.Value |> ParamValue.getValueAsString) d) |> String.concat "; "}""")
(fun e ->
[
CyParam.label <| e.ToString()
Expand Down

0 comments on commit 3329967

Please sign in to comment.