
Create a Branch in a Blueprint
br.RdUse br() to group steps that should run as an isolated branch with
namespaced outputs prefixed by <name>__.
Value
A branch object used inside blueprint().
Examples
blueprint(
step_preprocess(),
br("limma",
step_dea_limma(),
step_volcano()
),
br("ttest",
step_dea_ttest(),
step_volcano()
)
)
#>
#> ── Blueprint (5 steps) ──
#>
#> • step_preprocess()
#> • br("limma")
#> • step_dea_limma()
#> • step_volcano()
#> • br("ttest")
#> • step_dea_ttest()
#> • step_volcano()