cpg_flow

cpg_flow package

This package provides the core functionality for defining and managing computational pipelines. It includes modules for specifying pipeline targets, stages, and workflows.

Modules:

  • targets: Defines the targets or endpoints of the pipeline.
  • stage: Manages individual stages or steps within the pipeline.
  • workflow: Orchestrates the overall workflow of the pipeline, connecting stages and targets.

This package is designed to be used with pdoc for generating documentation.

 1# This is used to define what pdoc will generate documentation for
 2"""
 3cpg_flow package
 4
 5This package provides the core functionality for defining and managing computational pipelines.
 6It includes modules for specifying pipeline targets, stages, and workflows.
 7
 8Modules:
 9- targets: Defines the targets or endpoints of the pipeline.
10- stage: Manages individual stages or steps within the pipeline.
11- workflow: Orchestrates the overall workflow of the pipeline, connecting stages and targets.
12
13This package is designed to be used with pdoc for generating documentation.
14"""
15
16__all__ = ['targets', 'stage', 'workflow']