Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions doc/source/admin/galaxy_options.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5842,4 +5842,15 @@
:Type: int


~~~~~~~~~~~~~~~~~~~~~~~~~~~~
``enable_beta_tool_formats``
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

:Description:
Enable beta tool formats (yaml, cwl, ...) which is a prerequisite
for user defined tools.
:Default: ``false``
:Type: bool



7 changes: 6 additions & 1 deletion lib/galaxy/config/sample/galaxy.yml.sample
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@ gravity:
# Process manager to use.
# ``supervisor`` is the default process manager when Gravity is invoked as a non-root user.
# ``systemd`` is the default when Gravity is invoked as root.
# Valid options are: supervisor, systemd
# ``multiprocessing`` is the default when Gravity is invoked as the foreground shortcut ``galaxy`` instead of ``galaxyctl``
# Valid options are: supervisor, systemd, multiprocessing
# process_manager:

# What command to write to the process manager configs
Expand Down Expand Up @@ -3104,3 +3105,7 @@ galaxy:
# ``true``. Runs in a Celery task.
#failed_jobs_working_directory_cleanup_interval: 86400

# Enable beta tool formats (yaml, cwl, ...) which is a prerequisite
# for user defined tools.
#enable_beta_tool_formats: false

7 changes: 7 additions & 0 deletions lib/galaxy/config/schemas/config_schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4301,3 +4301,10 @@ mapping:
default: 86400
desc: |
The interval in seconds between attempts to delete all failed Galaxy job's working directories from the filesystem (every 24 hours by default) if enable_failed_jobs_working_directory_cleanup is ``true``. Runs in a Celery task.

enable_beta_tool_formats:
type: bool
default: false
required: false
desc: |
Enable beta tool formats (yaml, cwl, ...) which is a prerequisite for user defined tools.
Loading