Skip to content

query_utils

get_converted_module_hierarchy_chain(kg, namespace_prefix, method_iri)

Retrieves the module hierarchy chain for a given method IRI and converts it to a list of module names.

Parameters:

Name Type Description Default
kg Graph

The knowledge graph to query.

required
namespace_prefix str

The namespace prefix to use in queries.

required
method_iri str

The IRI of the method.

required

Returns:

Name Type Description
List List

The list of module names in the module hierarchy chain, in the correct order.

Source code in exe_kg_lib/utils/query_utils.py
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
def get_converted_module_hierarchy_chain(
    kg: Graph,
    namespace_prefix: str,
    method_iri: str,
) -> List:
    """
    Retrieves the module hierarchy chain for a given method IRI and converts it to a list of module names.

    Args:
        kg (Graph): The knowledge graph to query.
        namespace_prefix (str): The namespace prefix to use in queries.
        method_iri (str): The IRI of the method.

    Returns:
        List: The list of module names in the module hierarchy chain, in the correct order.
    """
    module_chain_names = None
    try:
        module_chain_names = get_module_hierarchy_chain(kg, namespace_prefix, method_iri)
    except NoResultsError:
        print(f"Cannot retrieve module chain for method class: {method_iri}. Proceeding without it...")

    if module_chain_names:
        # convert KG class names to module names and reverse the module chain to store it in the correct order
        module_chain_names = [class_name_to_module_name(name) for name in module_chain_names]
        module_chain_names = [class_name_to_method_name(method_iri.split("#")[-1])] + module_chain_names
        module_chain_names.reverse()

    return module_chain_names

get_first_query_result_if_exists(query_method, *args)

Executes the given query method with the provided arguments and returns the first result if it exists.

Parameters:

Name Type Description Default
query_method Callable

The query method to execute.

required
*args

Variable number of arguments to pass to the query method.

()

Returns:

Type Description
Optional[str]

Optional[str]: The first query result if it exists, otherwise None.

Source code in exe_kg_lib/utils/query_utils.py
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
def get_first_query_result_if_exists(query_method: Callable, *args) -> Optional[str]:
    """
    Executes the given query method with the provided arguments and returns the first result if it exists.

    Args:
        query_method (Callable): The query method to execute.
        *args: Variable number of arguments to pass to the query method.

    Returns:
        Optional[str]: The first query result if it exists, otherwise None.
    """
    query_result = next(
        iter(list(query_method(*args))),
        None,
    )

    if query_result is None:
        return None

    return query_result

get_grouped_inherited_inputs(input_kg, namespace_prefix, entity_iri)

Retrieves the inherited inputs for a given entity, grouped by data entity IRI.

Parameters:

Name Type Description Default
input_kg Graph

The input knowledge graph.

required
namespace_prefix str

The namespace prefix for the entity.

required
entity_iri str

The IRI of the entity.

required

Returns:

Type Description
List[Tuple[str, List[str]]]

List[Tuple[str, List[str]]]: A list of tuples, where each tuple contains a property name and a list of input values.

Source code in exe_kg_lib/utils/query_utils.py
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
def get_grouped_inherited_inputs(
    input_kg: Graph, namespace_prefix: str, entity_iri: str
) -> List[Tuple[str, List[str]]]:
    """
    Retrieves the inherited inputs for a given entity, grouped by data entity IRI.

    Args:
        input_kg (Graph): The input knowledge graph.
        namespace_prefix (str): The namespace prefix for the entity.
        entity_iri (str): The IRI of the entity.

    Returns:
        List[Tuple[str, List[str]]]: A list of tuples, where each tuple contains a property name and a list of input values.

    """
    property_list = list(query_inherited_inputs(input_kg, namespace_prefix, entity_iri))
    property_list = sorted(property_list, key=lambda elem: elem[0])  # prepare for grouping
    property_list = [
        (key, [(elem[1], elem[2]) for elem in group])
        for key, group in itertools.groupby(property_list, key=lambda elem: elem[0])
    ]

    return property_list

get_grouped_inherited_outputs(input_kg, namespace_prefix, entity_iri)

Retrieves the inherited outputs for a given entity, grouped by data entity IRI.

Parameters:

Name Type Description Default
input_kg Graph

The input knowledge graph.

required
namespace_prefix str

The namespace prefix for the entity.

required
entity_iri str

The IRI of the entity.

required

Returns:

Type Description
List[Tuple[str, List[str]]]

List[Tuple[str, List[str]]]: A list of tuples, where each tuple contains a property name and a list of input values.

Source code in exe_kg_lib/utils/query_utils.py
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
def get_grouped_inherited_outputs(
    input_kg: Graph, namespace_prefix: str, entity_iri: str
) -> List[Tuple[str, List[str]]]:
    """
    Retrieves the inherited outputs for a given entity, grouped by data entity IRI.

    Args:
        input_kg (Graph): The input knowledge graph.
        namespace_prefix (str): The namespace prefix for the entity.
        entity_iri (str): The IRI of the entity.

    Returns:
        List[Tuple[str, List[str]]]: A list of tuples, where each tuple contains a property name and a list of input values.
    """
    property_list = list(query_inherited_outputs(input_kg, namespace_prefix, entity_iri))
    property_list = sorted(property_list, key=lambda elem: elem[0])  # prepare for grouping
    property_list = [
        (key, [(elem[1], elem[2]) for elem in group])
        for key, group in itertools.groupby(property_list, key=lambda elem: elem[0])
    ]

    return property_list

get_method_by_task_iri(kg, namespace_prefix, namespace, task_iri)

Retrieves the method associated with a given task IRI from the knowledge graph.

Parameters:

Name Type Description Default
kg Graph

The knowledge graph.

required
namespace_prefix str

The namespace prefix.

required
namespace Namespace

The namespace.

required
task_iri str

The IRI of the task.

required

Returns:

Type Description
Optional[Method]

Optional[Method]: The method object associated with the task IRI, or None if no method is found.

Raises:

Type Description
NoResultsError

If the task with the given IRI is not connected with any method in the KG.

NoResultsError

If the method with the retrieved IRI doesn't have a type that is a subclass of namespace.AtomicMethod.

Source code in exe_kg_lib/utils/query_utils.py
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
def get_method_by_task_iri(
    kg: Graph,
    namespace_prefix: str,
    namespace: Namespace,
    task_iri: str,
) -> Optional[Method]:
    """
    Retrieves the method associated with a given task IRI from the knowledge graph.

    Args:
        kg (Graph): The knowledge graph.
        namespace_prefix (str): The namespace prefix.
        namespace (Namespace): The namespace.
        task_iri (str): The IRI of the task.

    Returns:
        Optional[Method]: The method object associated with the task IRI, or None if no method is found.

    Raises:
        NoResultsError: If the task with the given IRI is not connected with any method in the KG.
        NoResultsError: If the method with the retrieved IRI doesn't have a type that is a subclass of `namespace.AtomicMethod`.
    """

    query_result = get_first_query_result_if_exists(
        query_method_iri_by_task_iri,
        kg,
        namespace_prefix,
        task_iri,
    )
    if query_result is None:
        raise NoResultsError(f"Task with IRI {task_iri} isn't connected with any method in the KG")

    method_iri = str(query_result[0])

    query_result = get_first_query_result_if_exists(
        query_instance_parent_iri,
        kg,
        method_iri,
        namespace.AtomicMethod,
    )

    if query_result is None:
        raise NoResultsError(
            f"Method with IRI {method_iri} doesn't have a type that is a subclass of {str(namespace.AtomicMethod)}"
        )

    method_parent_iri = str(query_result[0])

    return Method(method_iri, Entity(method_parent_iri))

get_method_grouped_params(method_iri, namespace_prefix, kg, inherited=False)

Retrieves the (inherited) parameters for a given method, grouped by property IRI.

Parameters:

Name Type Description Default
method_iri str

The IRI of the method.

required
namespace_prefix str

The namespace prefix.

required
kg Graph

The knowledge graph.

required

Returns:

Type Description
List[Tuple[str, List[str]]]

List[Tuple[str, List[str]]]: A list of tuples, where each tuple contains a parameter name and a list of its values.

Source code in exe_kg_lib/utils/query_utils.py
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
def get_method_grouped_params(
    method_iri: str, namespace_prefix: str, kg: Graph, inherited: bool = False
) -> List[Tuple[str, List[str]]]:
    """
    Retrieves the (inherited) parameters for a given method, grouped by property IRI.

    Args:
        method_iri (str): The IRI of the method.
        namespace_prefix (str): The namespace prefix.
        kg (Graph): The knowledge graph.

    Returns:
        List[Tuple[str, List[str]]]: A list of tuples, where each tuple contains a parameter name and a list of its values.
    """
    property_list = list(query_method_params_plus_inherited(method_iri, namespace_prefix, kg, inherited))
    property_list = sorted(property_list, key=lambda elem: elem[0])  # prepare for grouping
    property_list = [
        (key, [pair[1] for pair in group]) for key, group in itertools.groupby(property_list, lambda elem: elem[0])
    ]

    return property_list

get_module_hierarchy_chain(kg, namespace_prefix, method_iri)

Retrieves the hierarchy chain of the modules starting from the module connected to the given method IRI.

Parameters:

Name Type Description Default
kg Graph

The knowledge graph.

required
namespace_prefix str

The namespace prefix of the module.

required
method_iri str

The IRI of the method.

required

Returns:

Name Type Description
List List

The hierarchy chain of the module, represented as a list of module names.

Raises:

Type Description
NoResultsError

If the method doesn't have a subclass that is a subclass of {namespace_prefix}:Module.

Source code in exe_kg_lib/utils/query_utils.py
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
def get_module_hierarchy_chain(
    kg: Graph,
    namespace_prefix: str,
    method_iri: str,
) -> List:
    """
    Retrieves the hierarchy chain of the modules starting from the module connected to the given method IRI.

    Args:
        kg (Graph): The knowledge graph.
        namespace_prefix (str): The namespace prefix of the module.
        method_iri (str): The IRI of the method.

    Returns:
        List: The hierarchy chain of the module, represented as a list of module names.

    Raises:
        NoResultsError: If the method doesn't have a subclass that is a subclass of {namespace_prefix}:Module.
    """

    query_result = get_first_query_result_if_exists(
        query_module_iri_by_method_iri,
        kg,
        method_iri,
        namespace_prefix,
    )

    if query_result is None:
        raise NoResultsError(
            f"Method with IRI {method_iri} doesn't have a subclass that is subclass of {namespace_prefix}:Module"
        )

    module_iri = str(query_result[0])
    module_chain_query_res = list(query_hierarchy_chain(kg, module_iri))
    module_chain_query_res = [str(x[0]) for x in module_chain_query_res]
    module_chain_iris = [module_iri] + module_chain_query_res[:-1]
    module_chain_names = [iri.split("#")[-1] for iri in module_chain_iris]

    return module_chain_names

get_pipeline_and_first_task_iri(kg, namespace_prefix)

Retrieves the pipeline and first task IRI from the knowledge graph.

Parameters:

Name Type Description Default
kg Graph

The knowledge graph to query.

required
namespace_prefix str

The namespace prefix used in the KG.

required

Returns:

Type Description
Tuple[str, str, str]

Tuple[str, str, str]: A tuple containing the pipeline IRI, input data path, plots output directory, and task IRI.

Raises:

Type Description
NoResultsError

If the pipeline info is not found in the KG.

Source code in exe_kg_lib/utils/query_utils.py
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
def get_pipeline_and_first_task_iri(kg: Graph, namespace_prefix: str) -> Tuple[str, str, str]:
    """
    Retrieves the pipeline and first task IRI from the knowledge graph.

    Args:
        kg (Graph): The knowledge graph to query.
        namespace_prefix (str): The namespace prefix used in the KG.

    Returns:
        Tuple[str, str, str]: A tuple containing the pipeline IRI, input data path, plots output directory, and task IRI.

    Raises:
        NoResultsError: If the pipeline info is not found in the KG.
    """

    # assume one pipeline per file
    query_result = get_first_query_result_if_exists(
        query_pipeline_info,
        kg,
        namespace_prefix,
    )
    if query_result is None:
        raise NoResultsError("Pipeline info not found in the KG")

    pipeline_iri, input_data_path, plots_output_dir, task_iri = query_result

    return str(pipeline_iri), str(input_data_path), str(plots_output_dir), str(task_iri)

query_data_entity_reference_iri(kg, namespace_prefix, entity_iri)

Queries the knowledge graph for the reference IRIs associated with a given entity.

Parameters:

Name Type Description Default
kg Graph

The knowledge graph to query.

required
namespace_prefix str

The namespace prefix used in the query.

required
entity_iri str

The IRI of the entity to query.

required

Returns:

Type Description
Result

query.Result: The result of the query.

Source code in exe_kg_lib/utils/query_utils.py
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
def query_data_entity_reference_iri(kg: Graph, namespace_prefix, entity_iri: str) -> query.Result:
    """
    Queries the knowledge graph for the reference IRIs associated with a given entity.

    Args:
        kg (Graph): The knowledge graph to query.
        namespace_prefix (str): The namespace prefix used in the query.
        entity_iri (str): The IRI of the entity to query.

    Returns:
        query.Result: The result of the query.
    """
    return kg.query(
        f"SELECT ?r WHERE {{ ?entity {namespace_prefix}:hasReference ?r . }}",
        initBindings={
            "entity": URIRef(entity_iri),
        },
    )

query_hierarchy_chain(kg, entity_iri)

Queries the class hierarchy chain of a given entity in a knowledge graph.

Parameters:

Name Type Description Default
kg Graph

The knowledge graph to query.

required
entity_iri str

The IRI of the entity.

required

Returns:

Type Description
Result

query.Result: The result of the query.

Source code in exe_kg_lib/utils/query_utils.py
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
def query_hierarchy_chain(kg: Graph, entity_iri: str) -> query.Result:
    """
    Queries the class hierarchy chain of a given entity in a knowledge graph.

    Args:
        kg (Graph): The knowledge graph to query.
        entity_iri (str): The IRI of the entity.

    Returns:
        query.Result: The result of the query.
    """
    return kg.query(
        f"SELECT ?m2 WHERE {{ ?m1 rdfs:subClassOf+ ?m2 . }}",
        initBindings={
            "m1": URIRef(entity_iri),
        },
    )

query_inherited_inputs(input_kg, namespace_prefix, entity_iri)

Queries the input knowledge graph to find (inherited) inputs, their structure and the properties that connect them to the given entity.

Parameters:

Name Type Description Default
input_kg Graph

The input knowledge graph.

required
namespace_prefix str

The namespace prefix used in the SPARQL query.

required
entity_iri str

The IRI of the entity for which inherited inputs are to be found.

required

Returns:

Type Description
Result

query.Result: The result of the SPARQL query.

Source code in exe_kg_lib/utils/query_utils.py
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
def query_inherited_inputs(input_kg: Graph, namespace_prefix: str, entity_iri: str) -> query.Result:
    """
    Queries the input knowledge graph to find (inherited) inputs, their structure and the properties that connect them to the given entity.

    Args:
        input_kg (Graph): The input knowledge graph.
        namespace_prefix (str): The namespace prefix used in the SPARQL query.
        entity_iri (str): The IRI of the entity for which inherited inputs are to be found.

    Returns:
        query.Result: The result of the SPARQL query.

    """
    return input_kg.query(
        "\nSELECT ?m ?s ?p WHERE {?entity_iri rdfs:subClassOf* ?parent . "
        "?p rdfs:domain ?parent ."
        "?p rdfs:range ?m ."
        "?p rdfs:subPropertyOf+ " + namespace_prefix + ":hasInput ."
        "OPTIONAL { ?m rdfs:subClassOf ?s . }"
        "OPTIONAL { ?s rdfs:subClassOf+ " + namespace_prefix + ":DataStructure . }"
        "FILTER(?s != " + namespace_prefix + ":DataEntity) . }",
        initBindings={"entity_iri": URIRef(entity_iri)},
    )

query_inherited_outputs(input_kg, namespace_prefix, entity_iri)

Queries the input knowledge graph to find (inherited) outputs, their structure and the properties that connect them to the given entity.

Parameters:

Name Type Description Default
input_kg Graph

The input knowledge graph.

required
namespace_prefix str

The namespace prefix used in the SPARQL query.

required
entity_iri str

The IRI of the entity for which inherited inputs are to be found.

required

Returns:

Type Description
Result

query.Result: The result of the SPARQL query.

Source code in exe_kg_lib/utils/query_utils.py
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
def query_inherited_outputs(input_kg: Graph, namespace_prefix: str, entity_iri: str) -> query.Result:
    """
    Queries the input knowledge graph to find (inherited) outputs, their structure and the properties that connect them to the given entity.

    Args:
        input_kg (Graph): The input knowledge graph.
        namespace_prefix (str): The namespace prefix used in the SPARQL query.
        entity_iri (str): The IRI of the entity for which inherited inputs are to be found.

    Returns:
        query.Result: The result of the SPARQL query.

    """
    return input_kg.query(
        "\nSELECT ?m ?s ?p WHERE {?entity_iri rdfs:subClassOf* ?parent . "
        "?p rdfs:domain ?parent ."
        "?p rdfs:range ?m ."
        "?p rdfs:subPropertyOf+ " + namespace_prefix + ":hasOutput ."
        "?m rdfs:subClassOf ?s ."
        "?s rdfs:subClassOf+ " + namespace_prefix + ":DataStructure . "
        "FILTER(?s != " + namespace_prefix + ":DataEntity) . }",
        initBindings={"entity_iri": URIRef(entity_iri)},
    )

query_input_triples(kg, namespace_prefix, entity_iri)

Queries the triples that connect the given entity with its inputs.

Parameters:

Name Type Description Default
kg Graph

The knowledge graph to query.

required
namespace_prefix str

The namespace prefix used in the query.

required
entity_iri str

The IRI of the entity to query input triples for.

required

Returns:

Type Description
Result

query.Result: The result of the query.

Source code in exe_kg_lib/utils/query_utils.py
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
def query_input_triples(kg: Graph, namespace_prefix: str, entity_iri: str) -> query.Result:
    """
    Queries the triples that connect the given entity with its inputs.

    Args:
        kg (Graph): The knowledge graph to query.
        namespace_prefix (str): The namespace prefix used in the query.
        entity_iri (str): The IRI of the entity to query input triples for.

    Returns:
        query.Result: The result of the query.
    """
    return kg.query(
        f"""
        SELECT DISTINCT ?s ?p ?o
        WHERE {{
            {{ ?s ?p ?o . FILTER(?p = {namespace_prefix}:hasInput) }}
            UNION
            {{ ?s ?p ?o . ?p rdfs:subPropertyOf* {namespace_prefix}:hasInput . }}
        }}
        """,
        initBindings={"s": URIRef(entity_iri)},
    )

query_instance_parent_iri(kg, entity_iri, upper_class_uri_ref, negation_of_inheritance=False)

Queries the knowledge graph to find the types of a given entity, that are subclasses of a given upper class.

Parameters:

Name Type Description Default
kg Graph

The knowledge graph to query.

required
entity_iri str

The IRI of the entity.

required
upper_class_uri_ref URIRef

The URI reference of the upper class.

required

Returns:

Type Description
Result

query.Result: The result of the query.

Source code in exe_kg_lib/utils/query_utils.py
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
def query_instance_parent_iri(
    kg: Graph, entity_iri: str, upper_class_uri_ref: URIRef, negation_of_inheritance: bool = False
) -> query.Result:
    """
    Queries the knowledge graph to find the types of a given entity, that are subclasses of a given upper class.

    Args:
        kg (Graph): The knowledge graph to query.
        entity_iri (str): The IRI of the entity.
        upper_class_uri_ref (URIRef): The URI reference of the upper class.

    Returns:
        query.Result: The result of the query.
    """
    query_string = f"SELECT ?t WHERE {{ ?entity rdf:type ?t ."

    if negation_of_inheritance:
        query_string += f"FILTER NOT EXISTS {{ ?t rdfs:subClassOf* ?upper_class . }} }}"
    else:
        query_string += f"?t rdfs:subClassOf* ?upper_class . }}"

    return kg.query(
        query_string,
        initBindings={
            "entity": URIRef(entity_iri),
            "upper_class": upper_class_uri_ref,
        },
    )

query_linked_task_and_property(kg, namespace_prefix, method_iri)

Queries the linked task and linking property based on the given method IRI.

Parameters:

Name Type Description Default
kg Graph

The RDF graph to query.

required
namespace_prefix str

The namespace prefix for the AtomicTask.

required
method_iri str

The IRI of the method.

required

Returns:

Type Description
Result

query.Result: The result of the query.

Source code in exe_kg_lib/utils/query_utils.py
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
def query_linked_task_and_property(kg: Graph, namespace_prefix, method_iri: str) -> query.Result:
    """
    Queries the linked task and linking property based on the given method IRI.

    Args:
        kg (Graph): The RDF graph to query.
        namespace_prefix (str): The namespace prefix for the AtomicTask.
        method_iri (str): The IRI of the method.

    Returns:
        query.Result: The result of the query.
    """
    return kg.query(
        f"SELECT ?task WHERE {{ ?task ?m_property ?m ."
        f"                      ?task rdfs:subPropertyOf* {namespace_prefix}:AtomicTask .}}",
        initBindings={"m": URIRef(method_iri)},
    )

query_method_iri_by_task_iri(kg, namespace_prefix, task_iri)

Queries the method IRI associated with a given task IRI.

Parameters:

Name Type Description Default
kg Graph

The RDF graph to query.

required
namespace_prefix str

The namespace prefix for the method property.

required
task_iri str

The IRI of the task.

required

Returns:

Type Description
Result

query.Result: The result of the query.

Source code in exe_kg_lib/utils/query_utils.py
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
def query_method_iri_by_task_iri(kg: Graph, namespace_prefix, task_iri: str) -> query.Result:
    """
    Queries the method IRI associated with a given task IRI.

    Args:
        kg (Graph): The RDF graph to query.
        namespace_prefix (str): The namespace prefix for the method property.
        task_iri (str): The IRI of the task.

    Returns:
        query.Result: The result of the query.
    """
    return kg.query(
        f"SELECT ?m WHERE {{ ?task ?m_property ?m ."
        f"                   ?m_property rdfs:subPropertyOf* {namespace_prefix}:hasMethod .}}",
        initBindings={"task": URIRef(task_iri)},
    )

query_method_params(method_iri, namespace_prefix, kg)

Queries the parameters and their ranges for a given method IRI.

Parameters:

Name Type Description Default
method_iri str

The IRI (Internationalized Resource Identifier) of the method.

required
namespace_prefix str

The namespace prefix used in the knowledge graph.

required
kg Graph

The knowledge graph to query.

required

Returns:

Type Description
Result

query.Result: The result of the query, containing the parameters of the method.

Source code in exe_kg_lib/utils/query_utils.py
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
def query_method_params(method_iri: str, namespace_prefix: str, kg: Graph) -> query.Result:
    """
    Queries the parameters and their ranges for a given method IRI.

    Args:
        method_iri (str): The IRI (Internationalized Resource Identifier) of the method.
        namespace_prefix (str): The namespace prefix used in the knowledge graph.
        kg (Graph): The knowledge graph to query.

    Returns:
        query.Result: The result of the query, containing the parameters of the method.
    """
    return kg.query(
        f"\nSELECT ?p ?r WHERE {{?p rdfs:domain ?task_iri . "
        f"?p rdfs:range ?r . "
        f"?p rdfs:subPropertyOf {namespace_prefix}:hasParameter . }}",
        initBindings={"task_iri": URIRef(method_iri)},
    )

query_method_params_plus_inherited(method_iri, namespace_prefix, kg, inherited=False)

Queries the parameters and their ranges for a given method IRI, including inherited parameters.

Parameters:

Name Type Description Default
method_iri str

The IRI of the method.

required
namespace_prefix str

The namespace prefix for the hasParameter property.

required
kg Graph

The RDF graph to query.

required

Returns:

Type Description
Result

query.Result: The result of the query.

Source code in exe_kg_lib/utils/query_utils.py
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
def query_method_params_plus_inherited(
    method_iri: str, namespace_prefix: str, kg: Graph, inherited=False
) -> query.Result:
    """
    Queries the parameters and their ranges for a given method IRI, including inherited parameters.

    Args:
        method_iri (str): The IRI of the method.
        namespace_prefix (str): The namespace prefix for the `hasParameter` property.
        kg (Graph): The RDF graph to query.

    Returns:
        query.Result: The result of the query.
    """
    if inherited:
        return kg.query(
            f"\nSELECT ?p ?r WHERE {{?p rdfs:domain ?domain . "
            f"?method_iri rdfs:subClassOf* ?domain . "
            f"?p rdfs:range ?r . "
            f"?p rdfs:subPropertyOf {namespace_prefix}:hasParameter . }}",
            initBindings={"method_iri": URIRef(method_iri)},
        )

    return kg.query(
        f"\nSELECT ?p ?r WHERE {{?p rdfs:domain ?method_iri . "
        f"?p rdfs:range ?r . "
        f"?p rdfs:subPropertyOf {namespace_prefix}:hasParameter . }}",
        initBindings={"method_iri": URIRef(method_iri)},
    )

query_method_properties_and_methods(input_kg, namespace_prefix, entity_parent_iri)

Queries the input knowledge graph for methods and the properties that connect them to the given entity.

Parameters:

Name Type Description Default
input_kg Graph

The input knowledge graph to query.

required
namespace_prefix str

The namespace prefix used in the query.

required
entity_parent_iri str

The IRI of the parent entity.

required

Returns:

Type Description
Result

query.Result: The result of the query.

Source code in exe_kg_lib/utils/query_utils.py
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
def query_method_properties_and_methods(input_kg: Graph, namespace_prefix: str, entity_parent_iri: str) -> query.Result:
    """
    Queries the input knowledge graph for methods and the properties that connect them to the given entity.

    Args:
        input_kg (Graph): The input knowledge graph to query.
        namespace_prefix (str): The namespace prefix used in the query.
        entity_parent_iri (str): The IRI of the parent entity.

    Returns:
        query.Result: The result of the query.
    """
    return input_kg.query(
        "\nSELECT ?p ?m WHERE {?p rdfs:domain ?entity_iri . "
        "?p rdfs:range ?m . "
        "?m rdfs:subClassOf " + namespace_prefix + ":AtomicMethod . }",
        initBindings={"entity_iri": URIRef(entity_parent_iri)},
    )

query_module_iri_by_method_iri(kg, method_iri, namespace_prefix)

Queries the knowledge graph to retrieve the module IRI associated with a given method IRI.

Parameters:

Name Type Description Default
kg Graph

The Knowledge Graph to query.

required
method_iri str

The IRI of the method.

required
namespace_prefix str

The namespace prefix used in the query.

required

Returns:

Type Description
Result

query.Result: The result of the query.

Source code in exe_kg_lib/utils/query_utils.py
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
def query_module_iri_by_method_iri(
    kg: Graph,
    method_iri: str,
    namespace_prefix: str,
) -> query.Result:
    """
    Queries the knowledge graph to retrieve the module IRI associated with a given method IRI.

    Args:
        kg (Graph): The Knowledge Graph to query.
        method_iri (str): The IRI of the method.
        namespace_prefix (str): The namespace prefix used in the query.

    Returns:
        query.Result: The result of the query.
    """
    return kg.query(
        f"SELECT ?module WHERE {{ ?method rdfs:subClassOf ?module . "
        f"                        ?module rdfs:subClassOf+ {namespace_prefix}:Module . "
        f"                        FILTER NOT EXISTS {{ ?module rdfs:subClassOf+ {namespace_prefix}:Method . }} . }}",
        initBindings={"method": URIRef(method_iri)},
    )

query_output_triples(kg, namespace_prefix, entity_iri)

Queries the triples that connect the given entity with its outputs.

Parameters:

Name Type Description Default
kg Graph

The knowledge graph to query.

required
namespace_prefix str

The namespace prefix used in the query.

required
entity_iri str

The IRI of the entity to query input triples for.

required

Returns:

Type Description
Result

query.Result: The result of the query.

Source code in exe_kg_lib/utils/query_utils.py
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
def query_output_triples(kg: Graph, namespace_prefix: str, entity_iri: str) -> query.Result:
    """
    Queries the triples that connect the given entity with its outputs.

    Args:
        kg (Graph): The knowledge graph to query.
        namespace_prefix (str): The namespace prefix used in the query.
        entity_iri (str): The IRI of the entity to query input triples for.

    Returns:
        query.Result: The result of the query.
    """
    return kg.query(
        f"""
        SELECT DISTINCT ?s ?p ?o
        WHERE {{
            {{ ?s ?p ?o . FILTER(?p = {namespace_prefix}:hasOutput) }}
            UNION
            {{ ?s ?p ?o . ?p rdfs:subPropertyOf* {namespace_prefix}:hasOutput . }}
        }}
        """,
        initBindings={"s": URIRef(entity_iri)},
    )

query_parameters_triples(kg, namespace_prefix, entity_iri)

Queries the triples that connect the given entity with its parameters.

Parameters:

Name Type Description Default
kg Graph

The knowledge graph to query.

required
namespace_prefix str

The namespace prefix used in the query.

required
entity_iri str

The IRI of the entity to query input triples for.

required

Returns:

Type Description
Result

query.Result: The result of the query.

Source code in exe_kg_lib/utils/query_utils.py
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
def query_parameters_triples(kg: Graph, namespace_prefix: str, entity_iri: str) -> query.Result:
    """
    Queries the triples that connect the given entity with its parameters.

    Args:
        kg (Graph): The knowledge graph to query.
        namespace_prefix (str): The namespace prefix used in the query.
        entity_iri (str): The IRI of the entity to query input triples for.

    Returns:
        query.Result: The result of the query.
    """
    return kg.query(
        f"""
        SELECT ?s ?p ?o
        WHERE {{
            {{ ?s ?p ?o . ?p rdfs:subPropertyOf* {namespace_prefix}:hasParameter . }}
        }}
        """,
        initBindings={"s": URIRef(entity_iri)},
    )

query_parent_classes(kg, entity_iri)

Queries the knowledge graph to retrieve the parent classes of a given entity.

Parameters:

Name Type Description Default
kg Graph

The knowledge graph to query.

required
entity_iri str

The IRI of the entity.

required

Returns:

Type Description
Result

query.Result: The result of the query.

Source code in exe_kg_lib/utils/query_utils.py
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
def query_parent_classes(kg: Graph, entity_iri: str) -> query.Result:
    """
    Queries the knowledge graph to retrieve the parent classes of a given entity.

    Args:
        kg (Graph): The knowledge graph to query.
        entity_iri (str): The IRI of the entity.

    Returns:
        query.Result: The result of the query.
    """
    return kg.query(
        f"SELECT ?c WHERE {{ ?entity rdfs:subClassOf ?c . }}",
        initBindings={"entity": URIRef(entity_iri)},
    )

query_pipeline_info(kg, namespace_prefix)

Queries the knowledge graph for pipeline information.

Parameters:

Name Type Description Default
kg Graph

The knowledge graph to query.

required
namespace_prefix str

The namespace prefix used in the query.

required

Returns:

Type Description
Result

query.Result: The result of the query.

Source code in exe_kg_lib/utils/query_utils.py
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
def query_pipeline_info(kg: Graph, namespace_prefix: str) -> query.Result:
    """
    Queries the knowledge graph for pipeline information.

    Args:
        kg (Graph): The knowledge graph to query.
        namespace_prefix (str): The namespace prefix used in the query.

    Returns:
        query.Result: The result of the query.

    """
    return kg.query(
        f"\nSELECT ?p ?i ?o ?t WHERE {{?p rdf:type {namespace_prefix}:Pipeline ;"
        f"                          {namespace_prefix}:hasInputDataPath ?i ;"
        f"                          {namespace_prefix}:hasPlotsOutputDir ?o ;"
        f"                          {namespace_prefix}:hasStartTask ?t . }}"
    )

query_subclasses_of(class_iri, kg)

Queries the knowledge graph to retrieve the subclasses of a given class.

Parameters:

Name Type Description Default
class_iri str

The IRI of the class.

required
kg Graph

The knowledge graph to query.

required

Returns:

Type Description
Result

query.Result: The result of the query.

Source code in exe_kg_lib/utils/query_utils.py
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
def query_subclasses_of(class_iri: str, kg: Graph) -> query.Result:
    """
    Queries the knowledge graph to retrieve the subclasses of a given class.

    Args:
        class_iri (str): The IRI of the class.
        kg (Graph): The knowledge graph to query.

    Returns:
        query.Result: The result of the query.
    """
    return kg.query(
        "\nSELECT ?t WHERE {?t rdfs:subClassOf ?class_iri . }",
        initBindings={"class_iri": class_iri},
    )

query_top_level_task_iri(kg, task_iri, namespace_prefix)

Queries the knowledge graph to find the top-level task for a given task.

Parameters:

Name Type Description Default
kg Graph

The knowledge graph to query.

required
task_iri str

The IRI of the task.

required
namespace_prefix str

The namespace prefix used in the query.

required

Returns:

Type Description
Result

query.Result: The result of the query.

Source code in exe_kg_lib/utils/query_utils.py
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
def query_top_level_task_iri(kg: Graph, task_iri: str, namespace_prefix: str) -> query.Result:
    """
    Queries the knowledge graph to find the top-level task for a given task.

    Args:
        kg (Graph): The knowledge graph to query.
        task_iri (str): The IRI of the task.
        namespace_prefix (str): The namespace prefix used in the query.

    Returns:
        query.Result: The result of the query.
    """
    return kg.query(
        f"SELECT ?t2 WHERE {{ ?t1 rdfs:subClassOf* ?t2 ."
        f"                    ?t2 rdfs:subClassOf {namespace_prefix}:Task . "
        f"                    FILTER(?t2 != {namespace_prefix}:AtomicTask) . }}",
        initBindings={
            "t1": URIRef(task_iri),
        },
    )