Skip to contents

A helper function to construct a new VitessceConfigViewVConcat object based on multiple views.

Usage

vconcat(...)

Arguments

...

A variable number of VitessceConfigView, VitessceConfigViewHConcat, or VitessceConfigViewVConcat objects.

Value

A VitessceConfigViewVConcat object.

Examples

vc <- VitessceConfig$new(schema_version = "1.0.16", name = "My config")
ds <- vc$add_dataset("My dataset")
spatial <- vc$add_view(ds, Component$SPATIAL)
gene_list <- vc$add_view(ds, Component$FEATURE_LIST)
vc$layout(vconcat(spatial, gene_list))
vc$widget()