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.
1 parent 89553d9 commit ad7a7cfCopy full SHA for ad7a7cf
medikanren2/neo/neo-command-line-interface/utils.rkt
@@ -49,6 +49,9 @@
49
(remove-duplicates (helper props '()))))
50
pubs))
51
52
+(define (get-mediKanren-score props)
53
+ (string->number (get-assoc "mediKanren-score" props)))
54
+
55
(define write-list-to-tsv
56
(lambda (header-ls lol path)
57
(with-output-to-file path
@@ -100,6 +103,7 @@
100
103
"object"
101
104
"object properties"
102
105
"publications"
106
+ "mediKanren score"
107
"edge properties")
108
(map (lambda (e)
109
(match e
@@ -110,6 +114,7 @@
110
114
(curie->name-remember obj)
111
115
(curie->properties obj)
112
116
(get-publications prop)
117
+ (get-mediKanren-score prop)
113
118
prop)]
119
[else '()]))
120
(remove-duplicates edge*))
0 commit comments