The FileType list contains an enumeration of
valid string constant values representing file types
for dataset files.
CELLS_JSON: Thecells.jsonfile type.MOLECULES_JSON: Themolecules.jsonfile type.NEIGHBORHOODS_JSON: Theneighborhoods.jsonfile type.RASTER_JSON: Theraster.jsonfile type.CELL_SETS_JSON: Thecell-sets.jsonfile type.CLUSTERS_JSON: Theclusters.jsonfile type.EXPRESSION_MATRIX_ZARR: Theexpression-matrix.zarrfile 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"),
file_type = FileType$CELLS_JSON
)