Skip to content

Commit 9b638a8

Browse files
committed
wip
1 parent 63d143e commit 9b638a8

File tree

35 files changed

+1736
-875
lines changed

35 files changed

+1736
-875
lines changed

src/algos/phenomizer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ mod test {
8484

8585
let score = score(&prepare(query), &hpo_marfan, &hpo);
8686

87-
assert!((score - 1.770_859_7).abs() < 0.00001, "score = {score}");
87+
assert!((score - 1.757_194).abs() < 0.00001, "score = {score}");
8888

8989
Ok(())
9090
}

src/server/run/hpo_genes.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ pub(crate) mod test {
216216
pub fn web_server_data() -> Arc<crate::server::run::WebServerData> {
217217
let ontology = crate::common::load_hpo("tests/data/hpo").expect("could not load HPO");
218218
let ncbi_to_hgnc =
219-
crate::common::hgnc_xlink::load_ncbi_to_hgnc("tests/data/hgnc_xlink.tsv")
219+
crate::common::hgnc_xlink::load_ncbi_to_hgnc("tests/data/hpo/hgnc_xlink.tsv")
220220
.expect("could not HGNC xlink");
221221
let hgnc_to_ncbi = crate::common::hgnc_xlink::inverse_hashmap(&ncbi_to_hgnc);
222222
let hpo_doc = fastobo::from_file("tests/data/hpo/hp.obo").expect("could not load HPO OBO");

0 commit comments

Comments
 (0)