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 |
|
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 |
|
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 |
|
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 |
|
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 |
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 | 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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|
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 |
|