Skip to contents

print a sewage pipeline

this will print all nodes and theis inputs in the pipeline. Once the pipeline has been executed, print will show the outputs available through [pull_output()]

Usage

# S3 method for sewage_pipeline
print(x, ...)

Arguments

x

a [Pipeline()] object

...

not used

Value

formatted sewage pipeline output

Examples

pipeline = Pipeline() |>
    add_node(component = head, name = "Head", input = "file")
print(pipeline)
#> ══ Pipeline ════════════════════════════════════════════════════════════════════
#> 1 node(s):
#> 	Head <-- Input: file
#>