Genie.Toolbox.validtaskname — Functionvalidtaskname(task_name::String) :: StringAttempts to convert a potentially invalid (partial) task_name into a valid one.
Genie.Toolbox.taskdocs — Functiontask_docs(module_name::Module) :: StringRetrieves the docstring of the runtask method and returns it as a string.
Genie.Toolbox.loadtasks — Functionloadtasks(; filter_type_name = Symbol()) :: Vector{TaskInfo}Returns a vector of all registered Genie tasks.
Genie.Toolbox.printtasks — FunctionPrints a list of all the registered Genie tasks to the standard output.
new — Keywordnew, or new{A,B,...}Special function available to inner constructors which creates a new object of the type. The form new{A,B,...} explicitly specifies values of parameters for parametric types. See the manual section on Inner Constructor Methods for more information.
Genie.Toolbox.taskfilename — Functiontask_file_name(cmd_args::Dict{String,Any}, config::Settings) :: StringComputes the name of a Genie task based on the command line input.
Genie.Toolbox.taskmodulename — Functiontask_module_name(underscored_task_name::String) :: StringComputes the name of a Genie task based on the command line input.
Genie.Toolbox.isvalidtask! — Functionisvalidtask!(parsed_args::Dict{String,Any}) :: Dict{String,Any}Checks if the name of the task passed as the command line arg is valid task identifier – if not, attempts to address it, by appending the TASKSUFFIX suffix. Returns the potentially modified `parsedargsDict`.