Skip to contents

Returns a vector of possible output modalities for the supported model. These modalities represent different types of gene expression data that can be generated by the Synthesize Bio API.

Usage

get_valid_modalities()

Value

A character vector containing the valid modality strings.

Examples

# Get all supported modalities
modalities <- get_valid_modalities()
print(modalities)
#> [1] "bulk"        "single-cell"

# Check if a specific modality is supported
"bulk" %in% get_valid_modalities()
#> [1] TRUE