ModelManagerStudio

Documentation for ModelManagerStudio.

ModelManagerStudio.launchMethod
launch()
launch(path_to_project::AbstractString)
launch(physicell_dir::AbstractString, data_dir::AbstractString)

Launch the Model Manager Studio GUI for a particular project.

If no arguments are provided, it will initialize the Model Manager within the current working directory, i.e., using data_dir = "./data" and physicell_dir = "./PhysiCell". If a single argument is provided, it will use that as the base directory and append data and PhysiCell to it, i.e., data_dir = "$(path_to_project)/data" and physicell_dir = "$(path_to_project)/PhysiCell". If two arguments are provided, they will be used as the physicell_dir and data_dir, respectively.

Examples

using ModelManagerStudio
launch()  # Launches with default paths in the current directory, i.e., `data_dir = "./data"` and `physicell_dir = "./PhysiCell"`
launch("path/to/project")  # Launches with specified project path (will ask if paths differ)
launch("path/to/PhysiCell", "path/to/data")  # Launches with specified PhysiCell and data directories
source