Workflow Class
The Workflow class represents a computational workflow in DerivaML. Workflows define the steps and logic for ML experiments and can be associated with Python scripts, Jupyter notebooks, or programmatically defined processes.
Workflow model and script-URL resolution for DerivaML executions.
Defines the Workflow Pydantic model, which represents a versioned
computational workflow in a Deriva catalog. Key responsibilities:
- Stores workflow metadata (URL, type, description, checksum, RID).
- Resolves the calling script's source URL automatically (Git remote, Jupyter
kernel path, or local file path) when
urlis not provided explicitly. - Supports catalog write-back for
descriptionandworkflow_typewhen the workflow is bound to a live catalog instance. - Deduplicates workflows by checksum on insert (the private
DerivaML._add_workflow()dedup path; create workflows via the publicDerivaML.create_workflow()).
Workflow
Bases: BaseModel
Represents a computational workflow in DerivaML.
A workflow defines a computational process or analysis pipeline. Each workflow has a unique identifier, source code location, and type. Workflows are typically associated with Git repositories for version control.
When a Workflow is retrieved via lookup_workflow(rid) or lookup_workflow_by_url(),
it is bound to a catalog and its description and workflow_type properties become
writable. Setting these properties will update the catalog record. If the catalog is
read-only (a snapshot), attempting to set them will raise a DerivaMLException.
Attributes:
| Name | Type | Description |
|---|---|---|
name |
str
|
Human-readable name of the workflow. |
url |
str
|
URI to the workflow source code (typically a GitHub URL). |
workflow_type |
str | list[str]
|
Type(s) of workflow (must be controlled vocabulary terms). Accepts a single string or a list of strings. Internally normalized to a list. When the workflow is bound to a writable catalog, setting this property will update the catalog record. The new values must be valid terms from the Workflow_Type vocabulary. |
version |
str | None
|
Version identifier (semantic versioning). |
description |
str | None
|
Description of workflow purpose and behavior. When the workflow is bound to a writable catalog, setting this property will update the catalog record. |
workflow_rid |
RID | None
|
Resource Identifier if registered in catalog. |
checksum |
str | None
|
Git hash of workflow source code. |
is_notebook |
bool
|
Whether workflow is a Jupyter notebook. |
git_root |
Path | None
|
Filesystem root of the git checkout the source
was resolved from, when known. Used to scope dynamic-version
resolution; |
allow_dirty |
bool
|
When True, uncommitted changes in the source's git
worktree are downgraded from a hard error to a warning (set by the
|
Note
The recommended way to create a Workflow is via :meth:DerivaML.create_workflow()
<deriva_ml.DerivaML.create_workflow>, which validates the workflow type against
the catalog vocabulary::
>>> workflow = ml.create_workflow( # doctest: +SKIP
... name="RNA Analysis",
... workflow_type="python_notebook",
... description="RNA sequence analysis"
... )
Example
Create a workflow directly (without catalog validation)::
>>> workflow = Workflow( # doctest: +SKIP
... name="RNA Analysis",
... url="https://github.com/org/repo/analysis.ipynb",
... workflow_type="python_notebook",
... version="1.0.0",
... description="RNA sequence analysis"
... )
Look up an existing workflow by RID and update its properties::
>>> workflow = ml.lookup_workflow("2-ABC1") # doctest: +SKIP
>>> workflow.description = "Updated description for RNA analysis" # doctest: +SKIP
>>> workflow.workflow_type = "python_script" # doctest: +SKIP
>>> print(workflow.description) # doctest: +SKIP
Updated description for RNA analysis
Look up by URL and update::
>>> url = "https://github.com/org/repo/blob/abc123/analysis.py" # doctest: +SKIP
>>> workflow = ml.lookup_workflow_by_url(url) # doctest: +SKIP
>>> workflow.description = "New description" # doctest: +SKIP
Attempting to update on a read-only catalog raises an error::
>>> snapshot_ml = ml.catalog_snapshot("2023-01-15T10:30:00") # doctest: +SKIP
>>> workflow = snapshot_ml.lookup_workflow("2-ABC1") # doctest: +SKIP
>>> workflow.description = "New description" # Raises DerivaMLException # doctest: +SKIP
Source code in src/deriva_ml/execution/workflow.py
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 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 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 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 471 472 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 522 523 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 563 564 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 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 | |
workflow_types
property
workflow_types: list[str]
Get the workflow types from the catalog.
This property fetches the current workflow types directly from the catalog, ensuring consistency when multiple Workflow instances reference the same workflow or when types are modified externally.
When not bound to a catalog, returns the local workflow_type field.
Returns:
| Type | Description |
|---|---|
list[str]
|
List of workflow type term names from the Workflow_Type vocabulary. |
__setattr__
__setattr__(
name: str, value: Any
) -> None
Override setattr to intercept description and workflow_type updates.
When the workflow is bound to a catalog (via lookup_workflow), setting
the description or workflow_type properties will update the catalog
record. If the catalog is read-only (a snapshot), a DerivaMLException is raised.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
name
|
str
|
The attribute name being set. |
required |
value
|
Any
|
The value to set. |
required |
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
If attempting to set properties on a read-only catalog (snapshot), or if workflow_type is not a valid vocabulary term. |
Examples:
Update description::
>>> workflow = ml.lookup_workflow("2-ABC1") # doctest: +SKIP
>>> workflow.description = "Updated description" # doctest: +SKIP
Update workflow type::
>>> workflow = ml.lookup_workflow("2-ABC1") # doctest: +SKIP
>>> workflow.workflow_type = "python_notebook" # doctest: +SKIP
Source code in src/deriva_ml/execution/workflow.py
185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 | |
add_workflow_type
add_workflow_type(
workflow_type: str | VocabularyTerm,
) -> None
Add a workflow type to this workflow.
Adds a type term to this workflow if it's not already present. The term must exist in the Workflow_Type vocabulary.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
workflow_type
|
str | VocabularyTerm
|
Term name (string) or VocabularyTerm object from Workflow_Type vocabulary. |
required |
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
If the workflow is not registered (no RID), the catalog is read-only, or the term doesn't exist. |
Source code in src/deriva_ml/execution/workflow.py
308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 | |
add_workflow_types
add_workflow_types(
workflow_types: str
| VocabularyTerm
| list[str | VocabularyTerm],
) -> None
Add one or more workflow types to this workflow.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
workflow_types
|
str | VocabularyTerm | list[str | VocabularyTerm]
|
Single term or list of terms. Can be strings (term names) or VocabularyTerm objects. |
required |
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
If any term doesn't exist in the Workflow_Type vocabulary. |
Source code in src/deriva_ml/execution/workflow.py
361 362 363 364 365 366 367 368 369 370 371 372 373 374 | |
get_dynamic_version
staticmethod
get_dynamic_version(
root: str | PathLike | None = None,
) -> str
Return a dynamic version string derived from VCS state.
Wraps :func:setuptools_scm.get_version (the same mechanism used at
build time). The returned string includes distance-from-tag and an
optional .dirty suffix when the working tree has uncommitted
changes.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
root
|
str | PathLike | None
|
Repository root to introspect. When |
None
|
Returns:
| Type | Description |
|---|---|
str
|
A setuptools-scm-style version string (e.g. |
str
|
|
Raises:
| Type | Description |
|---|---|
RuntimeError
|
If |
Source code in src/deriva_ml/execution/workflow.py
848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 | |
get_url_and_checksum
staticmethod
get_url_and_checksum(
executable_path: Path,
allow_dirty: bool = False,
) -> tuple[str, str]
Determines the Git URL and checksum for a file.
Computes the Git repository URL and file checksum for the specified path. For notebooks, strips cell outputs before computing the checksum.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
executable_path
|
Path
|
Path to the workflow file. |
required |
allow_dirty
|
bool
|
If True, log a warning instead of raising an error when the file has uncommitted changes. Defaults to False. |
False
|
Returns:
| Type | Description |
|---|---|
tuple[str, str]
|
tuple[str, str]: (GitHub URL, Git object hash) |
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
If not in a Git repository. |
DerivaMLDirtyWorkflowError
|
If the file has uncommitted changes and allow_dirty is False. |
Example
url, checksum = Workflow.get_url_and_checksum(Path("analysis.ipynb")) # doctest: +SKIP print(f"URL: {url}") # doctest: +SKIP print(f"Checksum: {checksum}") # doctest: +SKIP
Source code in src/deriva_ml/execution/workflow.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 563 564 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 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 | |
remove_workflow_type
remove_workflow_type(
workflow_type: str | VocabularyTerm,
) -> None
Remove a workflow type from this workflow.
Removes a type term from this workflow if it's currently associated.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
workflow_type
|
str | VocabularyTerm
|
Term name (string) or VocabularyTerm object from Workflow_Type vocabulary. |
required |
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
If the workflow is not registered (no RID), the catalog is read-only, or the term doesn't exist. |
Source code in src/deriva_ml/execution/workflow.py
334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 | |
setup_url_checksum
setup_url_checksum() -> 'Workflow'
Pydantic post-construction validator that fills in url and checksum.
Runs automatically after every Workflow(...) construction
(it is a @model_validator(mode="after")). For any field
the caller did not provide, the validator derives a value from
the current execution context:
url— set to the resolved source URL of the calling script/notebook. Resolution prefers a Docker image identifier (whenDERIVA_MCP_IN_DOCKER=true), otherwise a GitHub/blob/<commit>/<path>URL from the local git checkout. When the script is not in a git repo andallow_dirty=True,urlis left empty ("") — there is nofile://fallback.checksum— set to the git commit SHA of the calling script (or the Docker image digest when running in Docker).version— in the local-git path (the common case) it is set fromget_dynamic_version()(the version derived from the local git checkout); in the Docker path it is set fromDERIVA_MCP_VERSIONinstead.
Caller-supplied values are never overwritten — this is a "fill in the blanks" validator, not a re-derivation.
Environment variable overrides
DERIVA_ML_WORKFLOW_URL: force-seturl.DERIVA_ML_WORKFLOW_CHECKSUM: force-setchecksum.DERIVA_MCP_IN_DOCKER=true: use Docker image metadata instead of git.
Docker-only environment variables (consulted when
DERIVA_MCP_IN_DOCKER=true):
- DERIVA_MCP_VERSION: semantic version of the Docker image.
- DERIVA_MCP_GIT_COMMIT: git commit hash at image build time.
- DERIVA_MCP_IMAGE_DIGEST: image digest (unique identifier).
- DERIVA_MCP_IMAGE_NAME: image name (e.g.
ghcr.io/informatics-isi-edu/deriva-ml-mcp).
Returns:
| Name | Type | Description |
|---|---|---|
Workflow |
'Workflow'
|
|
'Workflow'
|
Pydantic |
|
'Workflow'
|
model. |
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
If the validator cannot determine a URL or checksum from any source (e.g. not in a git repo, Docker env vars missing, no explicit overrides). |
Source code in src/deriva_ml/execution/workflow.py
407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 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 471 472 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 522 | |