study <- createStudy("example")
models <- list(
model_01 = "Name of first model",
model_02 = "Name of second model"
)
study <- addModels(study, models)
# Alternative: provide additional metadata about each model
models <- list(
model_01 = list(
description = "Name of first model",
data_type = "transcriptomics"
),
model_02 = list(
description = "Name of second model",
data_type = "proteomics"
)
)
Run the code above in your browser using DataLab