The DataType list contains an enumeration of
valid string constant values representing data types
for dataset files.
CELLS: Thecellsdata type.CELL_SETS: Thecell-setsdata type.EXPRESSION_MATRIX: Theexpression-matrixdata type.MOLECULES: Themoleculesdata type.NEIGHBORHOODS: Theneighborhoodsdata type.RASTER: Therasterdata type.
Examples
base_url <- "http://localhost:8000/"
vc <- VitessceConfig$new(schema_version = "1.0.16", name = "My config")
dataset <- vc$add_dataset("My dataset")$add_file(
url = paste0(base_url, "cells.json"),
data_type = DataType$CELLS,
file_type = FileType$CELLS_JSON
)