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. Note only version 2 can be accessed with this version of the package. If you would like to use v1 models return to 1.x.x versions of this package.

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"

# Check if a specific modality is supported
"bulk_rna-seq" %in% get_valid_modalities()
#> [1] FALSE