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
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. |
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. |
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(
... name="RNA Analysis",
... workflow_type="python_notebook",
... description="RNA sequence analysis"
... )
Example
Create a workflow directly (without catalog validation)::
>>> workflow = Workflow(
... 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")
>>> workflow.description = "Updated description for RNA analysis"
>>> workflow.workflow_type = "python_script"
>>> print(workflow.description)
Updated description for RNA analysis
Look up by URL and update::
>>> url = "https://github.com/org/repo/blob/abc123/analysis.py"
>>> workflow = ml.lookup_workflow_by_url(url)
>>> workflow.description = "New description"
Attempting to update on a read-only catalog raises an error::
>>> snapshot_ml = ml.catalog_snapshot("2023-01-15T10:30:00")
>>> workflow = snapshot_ml.lookup_workflow("2-ABC1")
>>> workflow.description = "New description" # Raises DerivaMLException
Source code in src/deriva_ml/execution/workflow.py
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 | |
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")
>>> workflow.description = "Updated description"
Update workflow type::
>>> workflow = ml.lookup_workflow("2-ABC1")
>>> workflow.workflow_type = "python_notebook"
Source code in src/deriva_ml/execution/workflow.py
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 | |
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
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 | |
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
327 328 329 330 331 332 333 334 335 336 337 338 339 340 | |
get_dynamic_version
staticmethod
get_dynamic_version(
root: str | PathLike | None = None,
) -> str
Return a dynamic version string based on VCS state (setuptools_scm), including dirty/uncommitted changes if configured.
Works under uv / Python 3.10+ by forcing setuptools to use stdlib distutils.
Source code in src/deriva_ml/execution/workflow.py
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 | |
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")) print(f"URL: {url}") print(f"Checksum: {checksum}")
Source code in src/deriva_ml/execution/workflow.py
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 | |
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
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 | |
setup_url_checksum
setup_url_checksum() -> 'Workflow'
Creates a workflow from the current execution context.
Identifies the currently executing program (script or notebook) and creates a workflow definition. Automatically determines the Git repository information and source code checksum.
The behavior can be configured using environment variables
- DERIVA_ML_WORKFLOW_URL: Override the detected workflow URL
- DERIVA_ML_WORKFLOW_CHECKSUM: Override the computed checksum
- DERIVA_MCP_IN_DOCKER: Set to "true" to use Docker metadata instead of git
Docker environment variables (used when DERIVA_MCP_IN_DOCKER=true): - DERIVA_MCP_VERSION: Semantic version of the Docker image - DERIVA_MCP_GIT_COMMIT: Git commit hash at build time - DERIVA_MCP_IMAGE_DIGEST: Docker image digest (unique identifier) - DERIVA_MCP_IMAGE_NAME: Docker image name (e.g., ghcr.io/org/repo)
Args:
Returns:
| Name | Type | Description |
|---|---|---|
Workflow |
'Workflow'
|
New workflow instance with detected Git information. |
Raises:
| Type | Description |
|---|---|
DerivaMLException
|
If not in a Git repository or detection fails (non-Docker). |
Example
workflow = Workflow.create_workflow( ... name="Sample Analysis", ... workflow_type="python_script", ... description="Process sample data" ... )
Source code in src/deriva_ml/execution/workflow.py
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 | |