print.sewage_pipeline {sewage}R Documentation

Printing Pipelines

Description

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 class '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)

[Package sewage version 0.2.5 Index]