Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
ivci:nuva-utils [2024/01/05 13:48] – created fkaag | ivci:nuva-utils [2024/03/20 13:21] (current) – fkaag | ||
---|---|---|---|
Line 30: | Line 30: | ||
</ | </ | ||
Assuming that the **nuva_refcode_YYY.csv** file has been copied to work file **nuva_code_YYY.csv**, | Assuming that the **nuva_refcode_YYY.csv** file has been copied to work file **nuva_code_YYY.csv**, | ||
+ | |||
+ | Note that the refcode file contains the NUVA English labels of vaccines for convenience, | ||
<code python> | <code python> | ||
Line 42: | Line 44: | ||
+ | < | ||
+ | eval_code(code) | ||
+ | </ | ||
+ | Produces the metrics for a code system, given a **nuva_code_YYY.csv** file for alignments. | ||
+ | |||
+ | 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: | ||
+ | <code python> | ||
+ | # Here the main program - Adapt the work directory to your environment | ||
+ | |||
+ | os.chdir(str(Path.home())+"/ | ||
+ | get_nuva(get_nuva_version()) | ||
+ | split_nuva() | ||
+ | refturtle_to_map(" | ||
+ | shutil.copyfile(" | ||
+ | map_to_turtle(" | ||
+ | |||
+ | q = """ | ||
+ | # All vaccines against smallpox | ||
+ | SELECT ?vcode ?vl WHERE { | ||
+ | ?dis rdfs: | ||
+ | ?dis rdfs:label " | ||
+ | ?vac rdfs: | ||
+ | ?vac rdfs:label ?vl . | ||
+ | ?vac skos: | ||
+ | ?vac nuvs: | ||
+ | ?val nuvs: | ||
+ | } | ||
+ | """ | ||
+ | res = query_core(q) | ||
+ | for row in res: | ||
+ | print (f" | ||
+ | |||
+ | res = eval_code(" | ||
+ | print (" | ||
+ | print (" | ||
+ | |||
+ | </ | ||