Creates a lightweight tabular representation of a Gazepoint analysis pipeline. The output contains workflow nodes and directed edges that can be audited or exported as DOT/Graphviz text. This function is intended for documentation, reporting, and reproducibility only.
Usage
create_gazepoint_pipeline_map(
steps = NULL,
edges = NULL,
pipeline_id = NULL,
include_default = TRUE
)Arguments
- steps
Optional data frame of pipeline steps. Required column:
step_id. Optional columns includelabel,domain,description,expected_order,required,status, andnotes. IfNULL, a conservative default workflow is used.- edges
Optional data frame of directed edges with columns
fromandto. Optional columns includeedge_type,description, andrequired. IfNULL, sequential edges are created from the step order.- pipeline_id
Optional pipeline identifier.
- include_default
Logical. If
TRUEandsteps = NULL, the default Gazepoint pipeline steps are used.
