Differences
This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
ivci:nuva-utils [2024/03/20 11:47] – fkaag | ivci:nuva-utils [2024/03/20 13:21] (current) – fkaag | ||
---|---|---|---|
Line 47: | Line 47: | ||
eval_code(code) | eval_code(code) | ||
</ | </ | ||
- | Produces the metrics for a code system, given a nuva_code_YYY.csv file for alignments. | + | Produces the metrics for a code system, given a **nuva_code_YYY.csv** file for alignments. |
Subproducts are: | Subproducts are: | ||
- | * nuva_reverse_YYY.csv : file with all NUVA codes matching a given external code | + | |
- | * nuva_best_YYY.csv: | + | |
An example use sequence is included in the file: | An example use sequence is included in the file: | ||
Line 64: | Line 64: | ||
map_to_turtle(" | map_to_turtle(" | ||
- | q1 = """ | + | q = """ |
# All vaccines against smallpox | # All vaccines against smallpox | ||
SELECT ?vcode ?vl WHERE { | SELECT ?vcode ?vl WHERE { | ||
Line 76: | Line 76: | ||
} | } | ||
""" | """ | ||
- | res = query_core(q1) | + | res = query_core(q) |
for row in res: | for row in res: | ||
- | | + | print (f" |
+ | |||
+ | res = eval_code(" | ||
+ | print (" | ||
+ | print (" | ||
- | q2=""" | ||
- | # List CVX Codes | ||
- | SELECT ?cvx ?nuva ?lvac WHERE { | ||
- | ?vac rdfs: | ||
- | ?vac skos: | ||
- | ?vac skos: | ||
- | ?code rdfs: | ||
- | ?code skos: | ||
- | ?vac rdfs:label $lvac | ||
- | } | ||
- | """ | ||
- | res=query_code(q2," | ||
- | for row in res: | ||
- | print (f"CVX {row.cvx} = {row.nuva} - {row.lvac}" | ||
</ | </ | ||