def test_ast_plan_strategy(requests_mock): set_mock(requests_mock, "workflow-5") print("test_ast_plan_strategy ()") tranql = TranQL() tranql.resolve_names = False # QueryPlanStrategy always uses /schema regardless of the `FROM` clause. ast = tranql.parse(""" SELECT cohort_diagnosis:disease->diagnoses:disease FROM '/schema' WHERE cohort_diagnosis = 'MONDO:0004979' --asthma AND Sex = '0' AND cohort = 'all_patients' AND max_p_value = '0.5' SET '$.knowledge_graph.nodes.[*].id' AS diagnoses """) select = ast.statements[0] plan = select.planner.plan(select.query) # Assert that it has planned to query both gamma and rtx assert ((plan[0][1] == "/graph/gamma/quick" and plan[1][1] == "/graph/rtx") or (plan[1][1] == "/graph/rtx" and plan[1][1] == "/graph/gamma/quick")) # Both should be querying the same thing (disease->diseasee), differing only in the sub_schema that they are querying for sub_schema_plan in plan: assert sub_schema_plan[2][0][0].type_name == "disease" assert sub_schema_plan[2][0][0].name == "cohort_diagnosis" assert sub_schema_plan[2][0][0].nodes == ["MONDO:0004979"] assert sub_schema_plan[2][0][1].direction == "->" assert sub_schema_plan[2][0][1].predicate == None assert sub_schema_plan[2][0][2].type_name == "disease" assert sub_schema_plan[2][0][2].name == "diagnoses" assert sub_schema_plan[2][0][2].nodes == []
def test_ast_plan_statements(requests_mock): set_mock(requests_mock, "workflow-5") print("test_ast_plan_statements ()") tranql = TranQL() ast = tranql.parse(""" SELECT cohort_diagnosis:disease->diagnoses:disease FROM '/clinical/cohort/disease_to_chemical_exposure' WHERE cohort_diagnosis = 'MONDO:0004979' --asthma AND Sex = '0' AND cohort = 'all_patients' AND max_p_value = '0.5' SET '$.knowledge_graph.nodes.[*].id' AS diagnoses """) select = ast.statements[0] statements = select.plan(select.planner.plan(select.query)) assert len(statements) == 1 statement = statements[0] assert len(statement.query.concepts) == 2 assert statement.query.concepts['cohort_diagnosis'].nodes == [ "MONDO:0004979" ] assert statement.query.concepts['diagnoses'].nodes == [] assert statement.service == "/graph/gamma/quick" assert statement.where == [] assert statement.set_statements == []
def test_ast_plan_strategy(requests_mock): set_mock(requests_mock, "workflow-5") print("test_ast_plan_strategy ()") tranql = TranQL() ast = tranql.parse(""" SELECT cohort_diagnosis:disease->diagnoses:disease FROM '/clinical/cohort/disease_to_chemical_exposure' WHERE cohort_diagnosis = 'MONDO:0004979' --asthma AND Sex = '0' AND cohort = 'all_patients' AND max_p_value = '0.5' SET '$.knowledge_graph.nodes.[*].id' AS diagnoses """) select = ast.statements[0] plan = select.planner.plan(select.query) expected = [[ 'robokop', '/graph/gamma/quick', [[ select.query.concepts['cohort_diagnosis'], select.query.arrows[0], select.query.concepts[select.query.order[1]] ]] ]] assert_lists_equal(plan, expected)
def test_ast_implicit_conversion (requests_mock): set_mock(requests_mock, "workflow-5") tranql = TranQL () ast = tranql.parse (""" SELECT drug_exposure->chemical_substance FROM '/schema' """) select = ast.statements[0] statements = select.plan (select.planner.plan (select.query)) assert_lists_equal(statements[0].query.order,["drug_exposure","chemical_substance"]) assert statements[0].get_schema_name(tranql) == "implicit_conversion"
def test_ast_decorate_element (requests_mock): set_mock(requests_mock, "workflow-5") """ Validate that -- The SelectStatement::decorate method properly decorates both nodes and edges """ print("test_ast_decorate_element ()") tranql = TranQL () ast = tranql.parse (""" SELECT chemical_substance->disease FROM "/graph/gamma/quick" """) select = ast.statements[0] node = { "id": "CHEBI:36314", "name": "glycerophosphoethanolamine", "omnicorp_article_count": 288, "type": "chemical_substance" } edge = { "ctime": [ 1544077522.7678425 ], "edge_source": [ "chembio.graph_pubchem_to_ncbigene" ], "id": "df662e2842d44fa2c0b5d945044317e3", "predicate_id": "SIO:000203", "publications": [ "PMID:16217747" ], "relation": [ "CTD:interacts_with" ], "relation_label": [ "interacts" ], "source_id": "CHEBI:36314", "target_id": "HGNC:8971", "type": "directly_interacts_with", "weight": 0.4071474314830641 } select.decorate(node,True,{ "schema" : select.get_schema_name(tranql) }) select.decorate(edge,False,{ "schema" : select.get_schema_name(tranql) }) assert_lists_equal(node["reasoner"],["robokop"]) assert_lists_equal(edge["reasoner"],["robokop"]) assert_lists_equal(edge["source_database"],["unknown"])
def test_ast_plan_statements (requests_mock): set_mock(requests_mock, "workflow-5") print("test_ast_plan_statements ()") tranql = TranQL () tranql.resolve_names = False # QueryPlanStrategy always uses /schema regardless of the `FROM` clause. ast = tranql.parse (""" SELECT cohort_diagnosis:disease->diagnoses:disease FROM '/schema' WHERE cohort_diagnosis = 'MONDO:0004979' --asthma AND Sex = '0' AND cohort = 'all_patients' AND max_p_value = '0.5' SET '$.knowledge_graph.nodes.[*].id' AS diagnoses """) select = ast.statements[0] statements = select.plan (select.planner.plan (select.query)) assert len(statements) == 2 for statement in statements: assert_lists_equal( list(statement.query.concepts.keys()), [ "cohort_diagnosis", "diagnoses" ] ) assert statement.query.concepts['cohort_diagnosis'].nodes == ["MONDO:0004979"] assert statement.query.concepts['diagnoses'].nodes == [] # TODO: figure out why there are duplicates generated?? assert_lists_equal(statement.where, [ ['cohort_diagnosis', '=', 'MONDO:0004979'], ['Sex', '=', '0'], ['Sex', '=', '0'], ['cohort', '=', 'all_patients'], ['cohort', '=', 'all_patients'], ['max_p_value', '=', '0.5'], ['max_p_value', '=', '0.5'] ]) assert statement.set_statements == [] assert ( (statements[0].service == "/graph/gamma/quick" and statements[1].service == "/graph/rtx") or (statements[0].service == "/graph/rtx" and statements[1].service == "/graph/gamma/quick") )
def test_ast_backwards_arrow (requests_mock): set_mock(requests_mock, "workflow-5") print("test_ast_backwards_arrow ()") tranql = TranQL () ast = tranql.parse (""" SELECT gene->biological_process<-microRNA FROM "/schema" """) select = ast.statements[0] statements = select.plan (select.planner.plan (select.query)) backwards_questions = statements[1].generate_questions(tranql) assert len(backwards_questions) == 1 assert len(backwards_questions[0]["question_graph"]["edges"]) == 1 assert backwards_questions[0]["question_graph"]["edges"][0]["source_id"] == "microRNA" assert backwards_questions[0]["question_graph"]["edges"][0]["target_id"] == "biological_process"
def test_ast_predicate_question (requests_mock): set_mock(requests_mock, "workflow-5") """ Validate that -- A query with a predicate will be properly formatted into a question graph """ print("test_ast_predicates ()") tranql = TranQL () ast = tranql.parse (""" SELECT chemical_substance-[treats]->disease FROM "/graph/gamma/quick" WHERE chemical_substance='CHEMBL:CHEMBL521' """) select = ast.statements[0] question = select.generate_questions(tranql)[0]["question_graph"] assert len(question["edges"]) == 1 assert "type" in question["edges"][0] assert question["edges"][0]["type"] == "treats"
def test_ast_generate_questions (requests_mock): set_mock(requests_mock, "workflow-5") """ Validate that -- named query concepts work. -- the question graph is build incorporating where clause constraints. """ print ("test_ast_set_generate_questions ()") app = TranQL () app.resolve_names = False ast = app.parse (""" SELECT cohort_diagnosis:disease->diagnoses:disease FROM '/clinical/cohort/disease_to_chemical_exposure' WHERE cohort_diagnosis = 'MONDO:0004979' --asthma AND Sex = '0' AND cohort = 'all_patients' AND max_p_value = '0.5' SET '$.knowledge_graph.nodes.[*].id' AS diagnoses """) questions = ast.statements[0].generate_questions (app) assert questions[0]['question_graph']['nodes'][0]['curie'] == 'MONDO:0004979' assert questions[0]['question_graph']['nodes'][0]['type'] == 'disease'
def test_ast_format_constraints (requests_mock): set_mock(requests_mock, "workflow-5") """ Validate that -- The syntax to pass values to reasoners in the where clause (e.g. "icees.foo = bar") functions properly """ print("test_ast_format_constraints ()") tranql = TranQL () ast = tranql.parse (""" SELECT population_of_individual_organisms->chemical_substance FROM "/clinical/cohort/disease_to_chemical_exposure" WHERE icees.should_format = 1 AND robokop.should_not_format = 0 """) select = ast.statements[0] select.format_constraints(tranql) print(select.where) assert_lists_equal(select.where, [ ['should_format', '=', 1], ['should_format', '=', 1], ['robokop.should_not_format', '=', 0], ['robokop.should_not_format', '=', 0] ])
def test_ast_multiple_reasoners (requests_mock): set_mock(requests_mock, "workflow-5") """ Validate that -- A query spanning multiple reasoners will query multiple reasoners. -- A transitions that multiple reasoners support will query each reasoner that supports it. """ print("test_ast_multiple_reasoners ()") tranql = TranQL () ast = tranql.parse (""" SELECT chemical_substance->disease->gene FROM "/schema" """) # RTX and Robokop both support transitions between chemical_substance->disease and only Robokop supports transitions between disease->gene select = ast.statements[0] statements = select.plan (select.planner.plan (select.query)) assert_lists_equal(statements[0].query.order,['chemical_substance','disease']) assert statements[0].get_schema_name(tranql) == "robokop" assert_lists_equal(statements[1].query.order,['chemical_substance','disease']) assert statements[1].get_schema_name(tranql) == "rtx" assert_lists_equal(statements[2].query.order,['disease','gene']) assert statements[2].get_schema_name(tranql) == "robokop"
def test_ast_merge_results (requests_mock): set_mock(requests_mock, "workflow-5") """ Validate that -- Results from the query plan are being merged together correctly """ print("test_ast_merge_answers ()") tranql = TranQL () tranql.resolve_names = False ast = tranql.parse (""" SELECT cohort_diagnosis:disease->diagnoses:disease FROM '/clinical/cohort/disease_to_chemical_exposure' WHERE cohort_diagnosis = 'MONDO:0004979' --asthma AND Sex = '0' AND cohort = 'all_patients' AND max_p_value = '0.5' SET '$.knowledge_graph.nodes.[*].id' AS diagnoses """) select = ast.statements[0] # What is the proper format for the name of a mock file? This should be made into one mock_responses = [ { 'knowledge_graph': { 'nodes': [ {'id': 'CHEBI:28177', 'type': 'chemical_substance'}, {'id': 'HGNC:2597', 'type': 'gene'}, { 'id': 'egg', 'name':'test_name_merge', 'type': 'foo_type', 'test_attr': ['a','b'] }, { 'id': 'equivalent_identifier_merge', 'equivalent_identifiers': ['TEST:00000'], 'merged_property': [ 'a', 'b' ] } ], 'edges': [ {'id': 'e0', 'source_id': 'CHEBI:28177', 'target_id': 'HGNC:2597'}, { # Test if edges that are connected to merged nodes will be successfully merged with other duplicate edges 'source_id' : 'CHEBI:28177', 'target_id' : 'egg', 'type': ['merge_this'], 'merge_this_list' : ['edge_1'], 'unique_attr_e_1' : 'e_1', 'id' : 'winning_edge_id' }, ] }, 'knowledge_map': [ { 'node_bindings': { 'chemical_substance': 'CHEBI:28177', 'gene': 'HGNC:2597' }, 'edge_bindings': {} } ] }, { 'knowledge_graph': { 'nodes': [ {'id': 'CHEBI:28177', 'type': 'chemical_substance'}, { 'id': 'also_test_array_type_and_string_type_merge', 'name':'test_name_merge', 'type': ['foo_type','bar_type'], 'test_attr': ['a','c'] }, {'id': 'TEST:00000', 'type': 'test', 'merged_property': ['a','c']}, ], 'edges': [ {'id': 'e0', 'source_id': 'CHEBI:28177', 'target_id': 'TEST:00000'}, { 'source_id' : 'CHEBI:28177', 'target_id' : 'also_test_array_type_and_string_type_merge', 'type': ['merge_this'], 'merge_this_list' : ['edge_2'], 'unique_attr_e_2' : 'e_2' } ] }, 'knowledge_map': [ { 'node_bindings': { 'chemical_substance': 'CHEBI:28177', 'test': 'TEST:00000' }, 'edge_bindings': {} } ] } ] expected_result = { "knowledge_graph": { "edges": [ { "id": "e0", "source_id": "CHEBI:28177", "target_id": "HGNC:2597", "type": [] }, { "id": "e0", "source_id": "CHEBI:28177", "target_id": "equivalent_identifier_merge", "type": [] }, { "id" : "winning_edge_id", "source_id" : "CHEBI:28177", "target_id" : "egg", "type" : ["merge_this"], "merge_this_list" : ["edge_1", "edge_2"], "unique_attr_e_1" : "e_1", "unique_attr_e_2" : "e_2" } ], "nodes": [ { "equivalent_identifiers": [ "CHEBI:28177" ], "id": "CHEBI:28177", "type": ["chemical_substance"] }, { "equivalent_identifiers": [ "HGNC:2597" ], "id": "HGNC:2597", "type": ["gene"] }, { "equivalent_identifiers": [ "also_test_array_type_and_string_type_merge", "egg" ], "type": [ "foo_type", "bar_type" ], "id": "egg", "name": "test_name_merge", "test_attr": [ "a", "b", "c" ] }, { "equivalent_identifiers": [ "TEST:00000", "equivalent_identifier_merge" ], "merged_property": ["a", "b", "c"], "id": "equivalent_identifier_merge", "type": ["test"] } ] }, "knowledge_map": [ { "edge_bindings": {}, "node_bindings": { "chemical_substance": "CHEBI:28177", "gene": "HGNC:2597" } }, { "edge_bindings": {}, "node_bindings": { "chemical_substance": "CHEBI:28177", "test": "equivalent_identifier_merge" } } ], 'question_graph': { 'edges': [ { 'id': 'foo', 'type': 'test' } ], 'nodes': [ { 'id': 'bar', 'type': 'bartest' } ] } } merged_results = select.merge_results ( mock_responses, tranql, { 'edges': [ { 'id': 'foo', 'type': 'test' } ], 'nodes': [ { 'id': 'bar', 'type': 'bartest' } ] }, root_order=None ) assert ordered(merged_results) == ordered(expected_result)
def test_ast_merge_knowledge_maps (requests_mock): set_mock(requests_mock, "workflow-5") tranql = TranQL () tranql.asynchronous = False tranql.resolve_names = False ast = tranql.parse (""" select chemical_substance->disease->gene from "/schema" where chemical_substance="CHEMBL:CHEMBL3" """) # select = ast.statements[0] # statements = select.plan (select.planner.plan (select.query)) # print(statements[0].query.order) # (select.execute_plan(tranql)) responses = [ { 'knowledge_map' : [ { 'node_bindings' : { 'chemical_substance' : 'CHEBI:100', 'disease' : 'MONDO:50' }, 'edge_bindings' : { 'e0' : 'ROOT_EDGE' } } ], 'question_order' : ['chemical_substance','disease'] }, { 'knowledge_map' : [ { 'node_bindings' : { 'disease' : 'MONDO:50', 'gene' : 'HGNC:1', 'metabolite' : 'KEGG:C00017' }, 'edge_bindings' : { 'e1' : 'TEST_EDGE' } } ], 'question_order' : ['disease','gene','metabolite'] }, { 'knowledge_map' : [ { 'node_bindings' : { 'disease' : 'MONDO:50', 'gene' : 'HGNC:1', 'metabolite' : 'KEGG:FOOBAR' }, 'edge_bindings' : { } } ], 'question_order' : ['disease','gene','metabolite'] }, { 'knowledge_map' : [ { 'node_bindings' : { 'metabolite' : 'KEGG:FOOBAR', 'protein' : 'UniProtKB:TESTING' }, 'edge_bindings' : { } } ], 'question_order' : ['metabolite','protein'] }, { 'knowledge_map' : [ { 'node_bindings' : { 'metabolite' : 'KEGG:C00017', 'protein' : 'UniProtKB:Q9NZJ5' }, 'edge_bindings' : { } } ], 'question_order' : ['metabolite','protein'] } ] merged = SelectStatement.connect_knowledge_maps(responses,[ 'chemical_substance', 'disease', 'gene', 'metabolite', 'protein' ]) assert_lists_equal(ordered(merged), ordered([ { "node_bindings" : { "chemical_substance" : "CHEBI:100", "disease" : "MONDO:50", "gene" : "HGNC:1", "metabolite" : "KEGG:FOOBAR", "protein" : "UniProtKB:TESTING" }, "edge_bindings" : { "e0" : "ROOT_EDGE" } }, { "node_bindings" : { "chemical_substance" : "CHEBI:100", "disease" : "MONDO:50", "gene" : "HGNC:1", "metabolite" : "KEGG:C00017", "protein" : "UniProtKB:Q9NZJ5" }, "edge_bindings" : { "e0" : "ROOT_EDGE", "e1" : "TEST_EDGE", } } ]))
def test_ast_merge_results(requests_mock): set_mock(requests_mock, "workflow-5") """ Validate that -- Results from the query plan are being merged together correctly """ print("test_ast_merge_answers ()") tranql = TranQL() tranql.resolve_names = False ast = tranql.parse(""" SELECT cohort_diagnosis:disease->diagnoses:disease FROM '/clinical/cohort/disease_to_chemical_exposure' WHERE cohort_diagnosis = 'MONDO:0004979' --asthma AND Sex = '0' AND cohort = 'all_patients' AND max_p_value = '0.5' SET '$.knowledge_graph.nodes.[*].id' AS diagnoses """) select = ast.statements[0] # What is the proper format for the name of a mock file? This should be made into one mock_responses = [{ 'knowledge_graph': { 'nodes': [{ 'id': 'CHEBI:28177', 'type': 'chemical_substance' }, { 'id': 'HGNC:2597', 'type': 'gene' }], 'edges': [{ 'id': 'e0', 'source_id': 'CHEBI:28177', 'target_id': 'HGNC:2597' }] }, 'knowledge_map': [{ 'node_bindings': { 'chemical_substance': 'CHEBI:28177', 'gene': 'HGNC:2597' }, 'edge_bindings': { 'e1': ['e0'], 's0': '1cdd83d6-7f6b-4b17-9139-63f8e81f2122' }, 'score': 0.09722323258334348 }] }, { 'knowledge_graph': { 'nodes': [{ 'id': 'CHEBI:28177', 'type': 'chemical_substance' }, { 'id': 'TEST:00000', 'type': 'test' }], 'edges': [{ 'id': 'e0', 'source_id': 'CHEBI:28177', 'target_id': 'TEST:00000' }] }, 'knowledge_map': [{ 'node_bindings': { 'chemical_substance': 'CHEBI:28177', 'test': 'TEST:00000' }, 'edge_bindings': { 'e1': ['e0'], 's0': '1cdd83d6-7f6b-4b17-9139-63f8e81f2122' }, 'score': 0.09722323258334348 }] }] expected_result = { "knowledge_graph": { "edges": [{ "id": "e0", "source_id": "CHEBI:28177", "target_id": "HGNC:2597" }, { "id": "e0", "source_id": "CHEBI:28177", "target_id": "TEST:00000" }], "nodes": [{ "equivalent_identifiers": ["CHEBI:28177"], "id": "CHEBI:28177", "type": "chemical_substance" }, { "equivalent_identifiers": ["HGNC:2597"], "id": "HGNC:2597", "type": "gene" }, { "equivalent_identifiers": ["TEST:00000"], "id": "TEST:00000", "type": "test" }] }, "knowledge_map": [{ "edge_bindings": { "e1": ["e0"], "s0": "1cdd83d6-7f6b-4b17-9139-63f8e81f2122" }, "node_bindings": { "chemical_substance": "CHEBI:28177", "gene": "HGNC:2597" }, "score": 0.09722323258334348 }, { "edge_bindings": { "e1": ["e0"], "s0": "1cdd83d6-7f6b-4b17-9139-63f8e81f2122" }, "node_bindings": { "chemical_substance": "CHEBI:28177", "test": "TEST:00000" }, "score": 0.09722323258334348 }] } merged_results = select.merge_results(mock_responses, select.service, tranql) assert (merged_results == expected_result)