forked from usegalaxy-it/infrastructure-playbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgxconfig.yml
2399 lines (2011 loc) · 111 KB
/
gxconfig.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
## used by: galaxyproject.galaxy
base_app_main: &BASE_APP_MAIN
# The directory that will be prepended to relative paths in options
# specifying other Galaxy config files (e.g. datatypes_config_file).
# Defaults to the directory in which galaxy.yml is located.
config_dir: "{{ galaxy_config_dir }}"
# The directory that will be prepended to relative paths in options
# specifying config files controlled by Galaxy (such as
# shed_tool_config_file, etc.). Must be writable by the user running
# Galaxy. Defaults to `<config_dir>/` if running Galaxy from source
# or `<data_dir>/config` otherwise.
managed_config_dir: "{{ galaxy_mutable_config_dir }}"
# The directory that will be prepended to relative paths in options
# specifying Galaxy data/cache directories and files (such as the
# default SQLite database, file_path, etc.). Defaults to `database/`
# if running Galaxy from source or `<config_dir>/data` otherwise.
data_dir: "{{ galaxy_mutable_data_dir }}"
# The directory containing custom templates for Galaxy, such as
# HTML/text email templates. Defaults to 'templates'. Default
# templates can be found in the Galaxy root under config/templates.
# These can be copied to <templates_dir> if you wish to customize
# them.
# The value of this option will be resolved with respect to
# <config_dir>.
#templates_dir: templates
# Top level cache directory. Any other cache directories
# (tool_cache_data_dir, template_cache_path, etc.) should be
# subdirectories.
# The value of this option will be resolved with respect to
# <data_dir>.
#cache_dir: cache
# By default, Galaxy uses a SQLite database at
# '<data_dir>/universe.sqlite'. You may use a SQLAlchemy connection
# string to specify an external database instead.
# Sample default
# 'sqlite:///<data_dir>/universe.sqlite?isolation_level=IMMEDIATE'
# You may specify additional options that will be passed to the
# SQLAlchemy database engine by using the prefix
# "database_engine_option_". For some of these options, default values
# are provided (e.g. see database_engine_option_pool_size, etc.).
# The same applies to `install_database_connection`, for which you
# should use the "install_database_engine_option_" prefix.
# For more options, please check SQLAlchemy's documentation at
# https://docs.sqlalchemy.org/en/14/core/engines.html?highlight=create_engine#sqlalchemy.create_engine
database_connection: "{{ galaxy_db_connection }}"
# If the server logs errors about not having enough database pool
# connections, you will want to increase these values, or consider
# running more Galaxy processes.
database_engine_option_pool_size: 20
# If the server logs errors about not having enough database pool
# connections, you will want to increase these values, or consider
# running more Galaxy processes.
database_engine_option_max_overflow: 20
# If using MySQL and the server logs the error "MySQL server has gone
# away", you will want to set this to some positive value (7200 should
# work).
#database_engine_option_pool_recycle: -1
# If large database query results are causing memory or response time
# issues in the Galaxy process, leave the result on the server
# instead. This option is only available for PostgreSQL and is highly
# recommended.
#database_engine_option_server_side_cursors: false
# Log all database transactions, can be useful for debugging and
# performance profiling. Logging is done via Python's 'logging'
# module under the qualname
# 'galaxy.model.orm.logging_connection_proxy'
#database_query_profiling_proxy: false
# If auto-creating a postgres database on startup - it can be based on
# an existing template database. This will set that. This is probably
# only useful for testing but documentation is included here for
# completeness.
#database_template: null
# Log number of SQL queries executed and total time spent dispatching
# SQL statements for each web request. If statsd is also enabled this
# information will be logged there as well. This should be considered
# somewhat experimental, we are unsure of the performance costs of
# running this in production. This is useful information for
# optimizing database interaction performance. Similar information can
# be obtained on a per-request basis by enabling the sql_debug
# middleware and adding sql_debug=1 to a request string.
#database_log_query_counts: false
# Slow query logging. Queries slower than the threshold indicated
# below will be logged to debug. A value of '0' is disabled. For
# example, you would set this to .005 to log all queries taking longer
# than 5 milliseconds.
slow_query_log_threshold: 2
# Enables a per request sql debugging option. If this is set to true,
# append ?sql_debug=1 to web request URLs to enable detailed logging
# on the backend of SQL queries generated during that request. This is
# useful for debugging slow endpoints during development.
#enable_per_request_sql_debugging: false
# By default, Galaxy will use the same database to track user data and
# tool shed install data. There are many situations in which it is
# valuable to separate these - for instance bootstrapping fresh Galaxy
# instances with pretested installs. The following option can be used
# to separate the tool shed install database (all other options listed
# above but prefixed with ``install_`` are also available).
# Defaults to the value of the 'database_connection' option.
#install_database_connection: null
# Setting the following option to true will cause Galaxy to
# automatically migrate the database forward after updates. This is
# not recommended for production use.
#database_auto_migrate: false
# Wait for database to become available instead of failing
# immediately.
#database_wait: false
# Number of attempts before failing if database_wait is enabled.
#database_wait_attempts: 60
# Time to sleep between attempts if database_wait is enabled (in
# seconds).
#database_wait_sleep: 1.0
# Time (in seconds) between attempts to remove old rows from the
# history_audit database table. Set to 0 to disable pruning.
#history_audit_table_prune_interval: 3600
# Where dataset files are stored. It must be accessible at the same
# path on any cluster nodes that will run Galaxy jobs, unless using
# Pulsar. The default value has been changed from 'files' to 'objects'
# as of 20.05; however, Galaxy will first check if the 'files'
# directory exists before using 'objects' as the default.
# The value of this option will be resolved with respect to
# <data_dir>.
file_path: /data/share/datasets
# Where temporary files are stored. It must be accessible at the same
# path on any cluster nodes that will run Galaxy jobs, unless using
# Pulsar.
# The value of this option will be resolved with respect to
# <data_dir>.
new_file_path: /data/share/jwd/tmp
# Maximum size of uploadable files, specified in bytes (default:
# 100GB). This value is ignored if an external upload server is
# configured.
#maximum_upload_file_size: 107374182400
# Tool config files, defines what tools are available in Galaxy. Tools
# can be locally developed or installed from Galaxy tool sheds.
# (config/tool_conf.xml.sample will be used if left unset and
# config/tool_conf.xml does not exist). Can be a single file, a list
# of files, or (for backwards compatibility) a comma-separated list of
# files.
# The value of this option will be resolved with respect to
# <config_dir>.
tool_config_file: "{{ galaxy_config_dir }}/tool_conf.xml,{{ galaxy_config_dir }}/nagios_tool_conf.xml"
# Tool config file for tools installed from the Galaxy Tool Shed. Must
# be writable by Galaxy and generally should not be edited by hand. In
# older Galaxy releases, this file was part of the tool_config_file
# option. It is still possible to specify this file (and other
# shed-enabled tool config files) in tool_config_file, but in the
# standard case of a single shed-enabled tool config, this option is
# preferable. This file will be created automatically upon tool
# installation, whereas Galaxy will fail to start if any files in
# tool_config_file cannot be read.
# The value of this option will be resolved with respect to
# <managed_config_dir>.
shed_tool_config_file: "{{ galaxy_shed_tool_conf_file }}"
# This option is deprecated. In previous releases this file was
# maintained by tool migration scripts that are no longer part of the
# code base. The option remains as a placeholder for deployments where
# these scripts were previously run and such a file exists.
# The value of this option will be resolved with respect to
# <managed_config_dir>.
migrated_tools_config: "{{ galaxy_config_dir }}/migrated_tools_conf.xml"
# File that contains the XML section and tool tags from all tool panel
# config files integrated into a single file that defines the tool
# panel layout. This file can be changed by the Galaxy administrator
# to alter the layout of the tool panel. If not present, Galaxy will
# create it.
# The value of this option will be resolved with respect to
# <managed_config_dir>.
integrated_tool_panel_config: "{{ galaxy_mutable_config_dir }}/integrated_tool_panel.xml"
# Default path to the directory containing the tools defined in
# tool_conf.xml. Other tool config files must include the tool_path as
# an attribute in the <toolbox> tag.
#tool_path: tools
# Various dependency resolver configuration parameters will have
# defaults set relative to this path, such as the default conda
# prefix, default Galaxy packages path, legacy tool shed dependencies
# path, and the dependency cache directory.
# Set the string to null to explicitly disable tool dependency
# handling. If this option is set to none or an invalid path,
# installing tools with dependencies from the Tool Shed or in Conda
# will fail.
# The value of this option will be resolved with respect to
# <data_dir>.
tool_dependency_dir: /usr/local/tools
# Specifies the path to the standalone dependency resolvers
# configuration file. This configuration can now be specified directly
# in the Galaxy configuration, see the description of the
# 'dependency_resolvers' option for details.
# The value of this option will be resolved with respect to
# <config_dir>.
dependency_resolvers_config_file: "{{ galaxy_config_dir }}/dependency_resolvers_conf.xml"
# conda_prefix is the location on the filesystem where Conda packages
# and environments are installed.
# Sample default '<tool_dependency_dir>/_conda'
conda_prefix: "{{ conda_prefix }}"
# Override the Conda executable to use, it will default to the one on
# the PATH (if available) and then to <conda_prefix>/bin/conda
# conda_exec: null
# Pass debug flag to conda commands.
#conda_debug: false
# conda channels to enable by default
# (https://conda.io/docs/user-guide/tasks/manage-channels.html)
conda_ensure_channels: 'iuc,conda-forge,bioconda,bgruening'
# Use locally-built conda packages.
#conda_use_local: false
# Set to true to instruct Galaxy to look for and install missing tool
# dependencies before each job runs.
conda_auto_install: false
# Set to true to instruct Galaxy to install Conda from the web
# automatically if it cannot find a local copy and conda_exec is not
# configured.
# conda_auto_init: true
# You must set this to true if conda_prefix and job_working_directory
# are not on the same volume, or some conda dependencies will fail to
# execute at job runtime. Conda will copy packages content instead of
# creating hardlinks or symlinks. This will prevent problems with some
# specific packages (perl, R), at the cost of extra disk space usage
# and extra time spent copying packages.
conda_copy_dependencies: true
# Path to a file that provides a mapping from abstract packages to
# concrete conda packages. See `config/local_conda_mapping.yml.sample`
# for examples.
# The value of this option will be resolved with respect to
# <config_dir>.
#local_conda_mapping_file: local_conda_mapping.yml
# Path to a file that provides a mapping from abstract packages to
# locally installed modules. See
# `config/environment_modules_mapping.yml.sample` for examples.
# The value of this option will be resolved with respect to
# <config_dir>.
#modules_mapping_files: environment_modules_mapping.yml
# Certain dependency resolvers (namely Conda) take a considerable
# amount of time to build an isolated job environment in the
# job_working_directory if the job working directory is on a network
# share. Set this option to true to cache the dependencies in a
# folder. This option is beta and should only be used if you
# experience long waiting times before a job is actually submitted to
# your cluster.
# This only affects tools where some requirements can be resolved but
# not others, most modern best practice tools can use prebuilt
# environments in the Conda directory.
use_cached_dependency_manager: true
# By default the tool_dependency_cache_dir is the _cache directory of
# the tool dependency directory.
# Sample default '<tool_dependency_dir>/_cache'
#tool_dependency_cache_dir: null
# By default, when using a cached dependency manager, the dependencies
# are cached when installing new tools and when using tools for the
# first time. Set this to false if you prefer dependencies to be
# cached only when installing new tools.
#precache_dependencies: true
# File containing the Galaxy Tool Sheds that should be made available
# to install from in the admin interface (.sample used if default does
# not exist).
# The value of this option will be resolved with respect to
# <config_dir>.
tool_sheds_config_file: "{{ galaxy_config_dir }}/tool_sheds_conf.xml"
# Monitor the tools and tool directories listed in any tool config
# file specified in tool_config_file option. If changes are found,
# tools are automatically reloaded. Watchdog (
# https://pypi.org/project/watchdog/ ) must be installed and available
# to Galaxy to use this option. Other options include 'auto' which
# will attempt to watch tools if the watchdog library is available but
# won't fail to load Galaxy if it is not and 'polling' which will use
# a less efficient monitoring scheme that may work in wider range of
# scenarios than the watchdog default.
#watch_tools: 'false'
# Monitor dynamic job rules. If changes are found, rules are
# automatically reloaded. Takes the same values as the 'watch_tools'
# option.
watch_job_rules: 'auto'
# Monitor a subset of options in the core configuration file (See
# RELOADABLE_CONFIG_OPTIONS in lib/galaxy/config/__init__.py). If
# changes are found, modified options are automatically reloaded.
# Takes the same values as the 'watch_tools' option.
watch_core_config: 'auto'
# Monitor the interactive tours directory specified in the
# 'tour_config_dir' option. If changes are found, modified tours are
# automatically reloaded. Takes the same values as the 'watch_tools'
# option.
#watch_tours: 'false'
# Location of files available for a short time as downloads (short
# term storage). This directory is exclusively used for serving
# dynamically generated downloadable content. Galaxy may uses the
# new_file_path parameter as a general temporary directory and that
# directory should be monitored by a tool such as tmpwatch in
# production environments. short_term_storage_dir on the other hand is
# monitored by Galaxy's task framework and should not require such
# external tooling.
# The value of this option will be resolved with respect to
# <cache_dir>.
short_term_storage_dir: '/data/share/jwd/short_term_web_storage'
# Default duration before short term web storage files will be cleaned
# up by Galaxy tasks (in seconds). The default duration is 1 day.
#short_term_storage_default_duration: 86400
# The maximum duration short term storage files can hosted before they
# will be marked for clean up. The default setting of 0 indicates no
# limit here.
#short_term_storage_maximum_duration: 0
# How many seconds between instances of short term storage being
# cleaned up in default Celery task configuration.
#short_term_storage_cleanup_interval: 3600
# Configured FileSource plugins.
# The value of this option will be resolved with respect to
# <config_dir>.
#file_sources_config_file: file_sources_conf.yml
# FileSource plugins described embedded into Galaxy's config.
#file_sources: null
# Enable Galaxy to fetch containers registered with quay.io generated
# from tool requirements resolved through Conda. These containers
# (when available) have been generated using mulled -
# https://github.com/mulled. Container availability will vary by tool,
# this option will only be used for job destinations with Docker or
# Singularity enabled.
enable_mulled_containers: true
# Container resolvers configuration. Set up a file describing
# container resolvers to use when discovering containers for Galaxy.
# If this is set to None, the default container resolvers loaded is
# determined by enable_mulled_containers. For available options see
# config/container_resolvers_conf.xml.sample.
container_resolvers_config_file: "{{ galaxy_config_dir }}/container_resolvers_conf.xml" # !!! CHECK
containers_resolvers_config_file: "{{ galaxy_config_dir }}/container_resolvers_conf.xml" # !!! CHECK
# Rather than specifying a container_resolvers_config_file, the
# definition of the resolvers to enable can be embedded into Galaxy's
# config with this option. This has no effect if a
# container_resolvers_config_file is used. Takes the same options that
# can be set in container_resolvers_config_file.
#container_resolvers: null
# involucro is a tool used to build Docker or Singularity containers
# for tools from Conda dependencies referenced in tools as
# `requirement` s. The following path is the location of involucro on
# the Galaxy host. This is ignored if the relevant container resolver
# isn't enabled, and will install on demand unless involucro_auto_init
# is set to false.
# The value of this option will be resolved with respect to
# <tool_dependency_dir>.
#involucro_path: involucro
# Install involucro as needed to build Docker or Singularity
# containers for tools. Ignored if relevant container resolver is not
# used.
#involucro_auto_init: true
# Conda channels to use when building Docker or Singularity containers
# using involucro.
#mulled_channels: conda-forge,bioconda
# Enable automatic polling of relative tool sheds to see if any
# updates are available for installed repositories. Ideally only one
# Galaxy server process should be able to check for repository
# updates. The setting for hours_between_check should be an integer
# between 1 and 24.
#enable_tool_shed_check: false
# Enable automatic polling of relative tool sheds to see if any
# updates are available for installed repositories. Ideally only one
# Galaxy server process should be able to check for repository
# updates. The setting for hours_between_check should be an integer
# between 1 and 24.
#hours_between_check: 12
# XML config file that contains data table entries for the
# ToolDataTableManager. This file is manually # maintained by the
# Galaxy administrator (.sample used if default does not exist).
# The value of this option will be resolved with respect to
# <config_dir>.
# tool_data_table_config_path: "{{ galaxy_config_dir }}/tool_data_table_conf.xml"
tool_data_table_config_path: /cvmfs/data.galaxyproject.org/managed/location/tool_data_table_conf.xml # !!! CHECK
# XML config file that contains additional data table entries for the
# ToolDataTableManager. This file is automatically generated based on
# the current installed tool shed repositories that contain valid
# tool_data_table_conf.xml.sample files. At the time of installation,
# these entries are automatically added to the following file, which
# is parsed and applied to the ToolDataTableManager at server start
# up.
# The value of this option will be resolved with respect to
# <managed_config_dir>.
shed_tool_data_table_config: "{{ galaxy_mutable_config_dir }}/shed_tool_data_table_conf.xml"
# Directory where data used by tools is located. See the samples in
# that directory and the Galaxy Community Hub for help:
# https://galaxyproject.org/admin/data-integration
tool_data_path: "{{ galaxy_root }}/tool-data"
# Directory where Tool Data Table related files will be placed when
# installed from a ToolShed. Defaults to the value of the
# 'tool_data_path' option.
shed_tool_data_path: "{{ galaxy_root }}/tool-data/"
# Monitor the tool_data and shed_tool_data_path directories. If
# changes in tool data table files are found, the tool data tables for
# that data manager are automatically reloaded. Watchdog (
# https://pypi.org/project/watchdog/ ) must be installed and available
# to Galaxy to use this option. Other options include 'auto' which
# will attempt to use the watchdog library if it is available but
# won't fail to load Galaxy if it is not and 'polling' which will use
# a less efficient monitoring scheme that may work in wider range of
# scenarios than the watchdog default.
#watch_tool_data_dir: 'false'
# File containing refgenie configuration, e.g.
# /path/to/genome_config.yaml. Can be used by refgenie backed tool
# data tables.
#refgenie_config_file: null
# File that defines the builds (dbkeys) available at sites used by
# display applications and the URL to those sites.
# The value of this option will be resolved with respect to
# <config_dir>.
build_sites_config_file: "{{ galaxy_config_dir }}/build_sites.yml"
# File containing old-style genome builds.
# The value of this option will be resolved with respect to
# <tool_data_path>.
builds_file_path: "{{ galaxy_config_dir }}/builds.txt"
# Directory where chrom len files are kept, currently mainly used by
# trackster.
# The value of this option will be resolved with respect to
# <tool_data_path>.
#len_file_path: shared/ucsc/chrom
# Datatypes config file(s), defines what data (file) types are
# available in Galaxy (.sample is used if default does not exist). If
# a datatype appears in multiple files, the last definition is used
# (though the first sniffer is used so limit sniffer definitions to
# one file).
# The value of this option will be resolved with respect to
# <config_dir>.
datatypes_config_file: "{{ galaxy_config_dir }}/datatypes_conf.xml"
# Enable sniffing of compressed datatypes. This can be
# configured/overridden on a per-datatype basis in the
# datatypes_conf.xml file. With this option set to false the
# compressed datatypes will be unpacked before sniffing.
#sniff_compressed_dynamic_datatypes_default: true
# Disable the 'Auto-detect' option for file uploads
#datatypes_disable_auto: false
# Visualizations config directory: where to look for individual
# visualization plugins. The path is relative to the Galaxy root dir.
# To use an absolute path begin the path with '/'. This is a
# comma-separated list.
#visualization_plugins_directory: "{{ galaxy_server_dir }}/config/plugins/visualizations"
# Interactive tour directory: where to store interactive tour
# definition files. Galaxy ships with several basic interface tours
# enabled, though a different directory with custom tours can be
# specified here. The path is relative to the Galaxy root dir. To use
# an absolute path begin the path with '/'. This is a comma-separated
# list.
tour_config_dir: "{{ galaxy_server_dir }}/config/plugins/tours,{{ galaxy_tour_dir }}"
# Webhooks directory: where to store webhooks - plugins to extend the
# Galaxy UI. By default none will be loaded. Set to
# config/plugins/webhooks/demo to load Galaxy's demo webhooks. To use
# an absolute path begin the path with '/'. This is a comma-separated
# list. Add test/functional/webhooks to this list to include the demo
# webhooks used to test the webhook framework.
webhooks_dir: "{{ galaxy_server_dir }}/config/plugins/webhooks,{{ galaxy_webhook_dir }}"
# Each job is given a unique empty directory as its current working
# directory. This option defines in what parent directory those
# directories will be created.
# The value of this option will be resolved with respect to
# <data_dir>.
job_working_directory: /data/share/jwd
# Mako templates are compiled as needed and cached for reuse, this
# directory is used for the cache
# The value of this option will be resolved with respect to
# <cache_dir>.
#template_cache_path: compiled_templates
# Set to false to disable various checks Galaxy will do to ensure it
# can run job scripts before attempting to execute or submit them.
#check_job_script_integrity: true
# Number of checks to execute if check_job_script_integrity is
# enabled.
check_job_script_integrity_count: 35
# Time to sleep between checks if check_job_script_integrity is
# enabled (in seconds).
check_job_script_integrity_sleep: 1
# Set the default shell used by non-containerized jobs Galaxy-wide.
# This defaults to bash for all jobs and can be overridden at the
# destination level for heterogeneous clusters. conda job resolution
# requires bash or zsh so if this is switched to /bin/sh for instance
# - conda resolution should be disabled. Containerized jobs always use
# /bin/sh - so more maximum portability tool authors should assume
# generated commands run in sh.
#default_job_shell: /bin/bash
# Whether to enable the tool document cache. This cache stores
# expanded XML strings. Enabling the tool cache results in slightly
# faster startup times. The tool cache is backed by a SQLite database,
# which cannot be stored on certain network disks. The cache location
# is configurable using the ``tool_cache_data_dir`` setting, but can
# be disabled completely here.
#enable_tool_document_cache: false
# Tool related caching. Fully expanded tools and metadata will be
# stored at this path. Per tool_conf cache locations can be configured
# in (``shed_``)tool_conf.xml files using the tool_cache_data_dir
# attribute.
# The value of this option will be resolved with respect to
# <cache_dir>.
#tool_cache_data_dir: tool_cache
# Directory in which the toolbox search index is stored. The value of
# this option will be resolved with respect to <data_dir>.
#tool_search_index_dir: tool_search_index
# Set this to true to delay parsing of tool inputs and outputs until
# they are needed. This results in faster startup times but uses more
# memory when using forked Galaxy processes.
#delay_tool_initialization: false
# Point Galaxy at a repository consisting of a copy of the bio.tools
# database (e.g. https://github.com/bio-tools/content/) to resolve
# bio.tools data for tool metadata.
#biotools_content_directory: null
# Set this to true to attempt to resolve bio.tools metadata for tools
# for tool not resovled via biotools_content_directory.
#biotools_use_api: false
# bio.tools web service request related caching. The type of beaker
# cache used.
#biotools_service_cache_type: file
# bio.tools web service request related caching. The data directory to
# point beaker cache at.
# The value of this option will be resolved with respect to
# <cache_dir>.
#biotools_service_cache_data_dir: biotools/data
# bio.tools web service request related caching. The lock directory to
# point beaker cache at.
# The value of this option will be resolved with respect to
# <cache_dir>.
#biotools_service_cache_lock_dir: biotools/locks
# Citation related caching. Tool citations information maybe fetched
# from external sources such as https://doi.org/ by Galaxy - the
# following parameters can be used to control the caching used to
# store this information.
#citation_cache_type: file
# Citation related caching. Tool citations information maybe fetched
# from external sources such as https://doi.org/ by Galaxy - the
# following parameters can be used to control the caching used to
# store this information.
# The value of this option will be resolved with respect to
# <cache_dir>.
#citation_cache_data_dir: citations/data
# Citation related caching. Tool citations information maybe fetched
# from external sources such as https://doi.org/ by Galaxy - the
# following parameters can be used to control the caching used to
# store this information.
# The value of this option will be resolved with respect to
# <cache_dir>.
#citation_cache_lock_dir: citations/locks
# Mulled resolution caching. Mulled resolution uses external APIs of
# quay.io, these requests are caching using this and the following
# parameters
#mulled_resolution_cache_type: file
# Data directory used by beaker for caching mulled resolution
# requests.
# The value of this option will be resolved with respect to
# <cache_dir>.
#mulled_resolution_cache_data_dir: mulled/data
# Lock directory used by beaker for caching mulled resolution
# requests.
# The value of this option will be resolved with respect to
# <cache_dir>.
#mulled_resolution_cache_lock_dir: mulled/locks
# Seconds until the beaker cache is considered old and a new value is
# created.
#mulled_resolution_cache_expire: 3600
# Configuration file for the object store If this is set and exists,
# it overrides any other objectstore settings.
# The value of this option will be resolved with respect to
# <config_dir>.
object_store_config_file: "{{ galaxy_config_dir }}/object_store_conf.xml"
# What Dataset attribute is used to reference files in an ObjectStore
# implementation, this can be 'uuid' or 'id'. The default will depend
# on how the object store is configured, starting with 20.05 Galaxy
# will try to default to 'uuid' if it can be sure this is a new Galaxy
# instance - but the default will be 'id' in many cases. In
# particular, if the name of the directory set in <file_path> is
# `objects`, the default will be set to 'uuid', otherwise it will be
# 'id'.
#object_store_store_by: null
# Galaxy sends mail for various things: subscribing users to the
# mailing list if they request it, password resets, reporting dataset
# errors, and sending activation emails. To do this, it needs to send
# mail through an SMTP server, which you may define here (host:port).
# Galaxy will automatically try STARTTLS but will continue upon
# failure.
# smtp_server: smtp.informatik.uni-freiburg.de
# If your SMTP server requires a username and password, you can
# provide them here (password in cleartext here, but if your server
# supports STARTTLS it will be sent over the network encrypted).
# smtp_username: "{{ smtp_username }}"
# If your SMTP server requires a username and password, you can
# provide them here (password in cleartext here, but if your server
# supports STARTTLS it will be sent over the network encrypted).
# smtp_password: "{{ smtp_password }}"
# If your SMTP server requires SSL from the beginning of the
# connection
# smtp_ssl: true
# On the user registration form, users may choose to join a mailing
# list. This is the address used to subscribe to the list. Uncomment
# and leave empty if you want to remove this option from the user
# registration form.
# Example value '[email protected]'
#mailing_join_addr: null
# The subject of the email sent to the mailing list join address. See
# the `mailing_join_addr` option for more information.
#mailing_join_subject: Join Mailing List
# The body of the email sent to the mailing list join address. See the
# `mailing_join_addr` option for more information.
#mailing_join_body: Join Mailing List
# Datasets in an error state include a link to report the error.
# Those reports will be sent to this address. Error reports are
# disabled if no address is set. Also this email is shown as a
# contact to user in case of Galaxy misconfiguration and other events
# user may encounter.
# error_email_to: [email protected]
# Email address to use in the 'From' field when sending emails for
# account activations, workflow step notifications, password resets,
# and tool error reports. We recommend using a string in the
# following format: Galaxy Project <[email protected]>. If
# not configured, '<galaxy-no-reply@HOSTNAME>' will be used.
# email_from: "European Galaxy Team <[email protected]>"
# This text will be inserted at the end of the activation email's
# message, before the 'Your Galaxy Team' signature.
#custom_activation_email_message: null
# URL of the support resource for the galaxy instance. Used in
# activation emails.
# Example value 'https://galaxyproject.org/'
# instance_resource_url: "https://galaxyproject.org/support"
# E-mail domains blocklist is used for filtering out users that are
# using disposable email addresses at registration. If their
# address's base domain matches any domain on the list, they are
# refused registration. Address subdomains are ignored (both
# '[email protected]' and '[email protected]' will match 'spam.com').
# Example value 'email_blocklist.conf'
# The value of this option will be resolved with respect to
# <config_dir>.
email_domain_blocklist_file: "{{ galaxy_config_dir }}/email_domain_blocklist.conf"
# E-mail domains allowlist is used to specify allowed email address
# domains. If the list is non-empty and a user attempts registration
# using an email address belonging to a domain that is not on the
# list, registration will be denied. Unlike
# <email_domain_allowlist_file> which matches the address's base
# domain, here email addresses are matched against the full domain
# (base + subdomain). This is a more restrictive option than
# <email_domain_blocklist_file>, and therefore, in case
# <email_domain_allowlist_file> is set and is not empty,
# <email_domain_blocklist_file> will be ignored.
# Example value 'email_allowlist.conf'
# The value of this option will be resolved with respect to
# <config_dir>.
#email_domain_allowlist_file: null
# Registration warning message is used to discourage people from
# registering multiple accounts. Applies mostly for the main Galaxy
# instance. If no message specified the warning box will not be shown.
registration_warning_message: Please register only one account - we provide this service free of charge and have limited computational resources. Multi-accounts are tracked and will be subjected to account termination and data deletion.
# User account activation feature global flag. If set to false, the
# rest of the Account activation configuration is ignored and user
# activation is disabled (i.e. accounts are active since
# registration). The activation is also not working in case the SMTP
# server is not defined.
user_activation_on: false # !!! CHECK
# Activation grace period (in hours). Activation is not forced (login
# is not disabled) until grace period has passed. Users under grace
# period can't run jobs. Enter 0 to disable grace period.
activation_grace_period: 48
# Shown in warning box to users that were not activated yet. In use
# only if activation_grace_period is set.
inactivity_box_content: Your account has not been activated yet. Feel free to browse around and see what's available, but you won't be able to upload data or run jobs until you have verified your email address.
# Password expiration period (in days). Users are required to change
# their password every x days. Users will be redirected to the change
# password screen when they log in after their password expires. Enter
# 0 to disable password expiration.
#password_expiration_period: 0
# Allow users to manage their account data, change passwords or delete
# their accounts.
#enable_account_interface: true
# Galaxy Session Timeout This provides a timeout (in minutes) after
# which a user will have to log back in. A duration of 0 disables this
# feature.
#session_duration: 0
# You can enter tracking code here to track visitor's behavior through
# your Google Analytics account. Example: UA-XXXXXXXX-Y
#ga_code: null
# Please enter the URL for the Plausible server (including https) so
# this can be used for tracking with Plausible
# (https://plausible.io/).
#plausible_server: null
# Please enter the URL for the Galaxy server so this can be used for
# tracking with Plausible (https://plausible.io/).
#plausible_domain: null
# Please enter the URL for the Matomo server (including https) so this
# can be used for tracking with Matomo (https://matomo.org/).
#matomo_server: null
# Please enter the site ID for the Matomo server so this can be used
# for tracking with Matomo (https://matomo.org/).
#matomo_site_id: null
# Galaxy can display data at various external browsers. These options
# specify which browsers should be available. URLs and builds
# available at these browsers are defined in the specified files.
# If use_remote_user is set to true, display application servers will
# be denied access to Galaxy and so displaying datasets in these sites
# will fail. display_servers contains a list of hostnames which should
# be allowed to bypass security to display datasets. Please be aware
# that there are security implications if this is allowed. More
# details (including required changes to the proxy server config) are
# available in the Apache proxy documentation on the Galaxy Community
# Hub.
# The list of servers in this sample config are for the UCSC Main,
# Test and Archaea browsers, but the default if left commented is to
# not allow any display sites to bypass security (you must uncomment
# the line below to allow them).
#display_servers: hgw1.cse.ucsc.edu,hgw2.cse.ucsc.edu,hgw3.cse.ucsc.edu,hgw4.cse.ucsc.edu,hgw5.cse.ucsc.edu,hgw6.cse.ucsc.edu,hgw7.cse.ucsc.edu,hgw8.cse.ucsc.edu,lowepub.cse.ucsc.edu
# Set this to false to disable the old-style display applications that
# are hardcoded into datatype classes. This may be desirable due to
# using the new-style, XML-defined, display applications that have
# been defined for many of the datatypes that have the old-style.
# There is also a potential security concern with the old-style
# applications, where a malicious party could provide a link that
# appears to reference the Galaxy server, but contains a redirect to a
# third-party server, tricking a Galaxy user to access said site.
enable_old_display_applications: false
# This flag enables an AWS cost estimate for every job based on their
# runtime matrices. CPU, RAM and runtime usage is mapped against AWS
# pricing table. Please note, that those numbers are only estimates.
aws_estimate: true
# Enable InteractiveTools.
interactivetools_enable: true
# Set this to false to redirect users of Interactive tools directly to
# the Interactive tools proxy. `interactivetools_upstream_proxy`
# should only be set to false in development.
#interactivetools_upstream_proxy: true
# Hostname and port of Interactive tools proxy. It is assumed to be
# hosted on the same hostname and port as Galaxy by default.
#interactivetools_proxy_host: null
# Base path for interactive tools running at a subpath without a
# subdomain. Defaults to "/".
#interactivetools_base_path: /
# Map for interactivetool proxy.
# The value of this option will be resolved with respect to
# <data_dir>.
interactivetools_map: "{{ galaxy_mutable_data_dir }}/interactivetools_map.sqlite"
# Prefix to use in the formation of the subdomain or path for
# interactive tools
# interactivetools_prefix: interactivetool
# Shorten the uuid portion of the subdomain or path for interactive
# tools. Especially useful for avoiding the need for wildcard
# certificates by keeping subdomain under 63 chars
#interactivetools_shorten_url: false
# Galaxy Interactive Tools (GxITs) can be stopped from within the
# Galaxy interface, killing the GxIT job without completing its
# metadata setting post-job steps. In such a case it may be desirable
# to set metadata on job outputs internally (in the Galaxy job handler
# process). The default is is the value of
# `retry_metadata_internally`, which defaults to `true`.
#retry_interactivetool_metadata_internally: true
# Show visualization tab and list in masthead.
#visualizations_visible: true
# Show a message box under the masthead.
message_box_visible: false
# Show a message box under the masthead.
#message_box_content: '[TIP] Are you uploading large files? Give a try to the FTP service! Easier and faster. Instruction on <a href="https://galaxyproject.eu/ftp">https://galaxyproject.eu/ftp</a>'
#message_box_content: '[EU infrastructure] 30.05.2022 - There is a performance issue with our main storage and this is affecting the readiness of the Galaxy service. We are investigating the source of the problem. '
# Class of the message box under the masthead. Possible values are:
# 'info' (the default), 'warning', 'error', 'done'.
message_box_class: warning
# Append "{brand}" text to the masthead.
brand: ITALY
# This option has been deprecated, use the `logo_src` instead to
# change the default logo including the galaxy brand title.
#display_galaxy_brand: true
# Format string used when showing date and time information. The
# string may contain: - the directives used by Python time.strftime()
# function (see
# https://docs.python.org/library/time.html#time.strftime), - $locale
# (complete format string for the server locale), - $iso8601 (complete
# format string as specified by ISO 8601 international standard).
#pretty_datetime_format: $locale (UTC)
# Allow import of workflows from the TRS servers configured in the
# specified YAML or JSON file. The file should be a list with 'id',
# 'label', and 'api_url' for each entry. Optionally, 'link_url' and
# 'doc' may be be specified as well for each entry.
# If this is null (the default), a simple configuration containing
# just Dockstore will be used.
# The value of this option will be resolved with respect to
# <config_dir>.
trs_servers_config_file: "{{ galaxy_config_dir }}/trs_servers_conf.yml"
# Server-wide default selection to use the legacy history during the
# transition period, after which this option will disappear. Users
# will remain able to swap back and forth per their preference.
#use_legacy_history: false
# Location of the configuration file containing extra user
# preferences.
# The value of this option will be resolved with respect to
# <config_dir>.
user_preferences_extra_conf_path: "{{ galaxy_config_dir }}/user_preferences_extra_conf.yml"
# Default localization for Galaxy UI. Allowed values are listed at the
# end of client/src/nls/locale.js. With the default value (auto), the
# locale will be automatically adjusted to the user's navigator
# language. Users can override this settings in their user preferences
# if the localization settings are enabled in
# user_preferences_extra_conf.yml
#default_locale: auto
# URL prefix for Galaxy application. If Galaxy should be served under
# a prefix set this to the desired prefix value.
#galaxy_url_prefix: /
# URL (with schema http/https) of the Galaxy instance as accessible
# within your local network. This URL is used as a default by pulsar
# file staging and Interactive Tool containers for communicating back
# with Galaxy via the API.
# If you plan to run Interactive Tools make sure the docker container
# can reach this URL.
# galaxy_infrastructure_url: https://usegalaxy.eu
# If the above URL cannot be determined ahead of time in dynamic
# environments but the port which should be used to access Galaxy can
# be - this should be set to prevent Galaxy from having to guess. For
# example if Galaxy is sitting behind a proxy with REMOTE_USER enabled
# - infrastructure shouldn't talk to Python processes directly and
# this should be set to 80 or 443, etc... If unset this file will be
# read for a server block defining a port corresponding to the webapp.
#galaxy_infrastructure_web_port: 8080
# The URL of the page to display in Galaxy's middle pane when loaded.
# This can be an absolute or relative URL.
#welcome_url: /static/welcome.html
# The URL linked by the "Galaxy/brand" text.
#logo_url: /
# The brand image source.
#logo_src: /static/favicon.svg
# The custom brand image source.
#logo_src_secondary: null
# The URL linked by the "Galaxy Help" link in the "Help" menu.
# helpsite_url: "https://help.galaxyproject.org/c/usegalaxy-eu-support"
# The URL linked by the "Community Hub" link in the "Help" menu.
# wiki_url: https://galaxyproject.org/
# The URL linked for quota information in the UI.
#quota_url: https://galaxyproject.org/support/account-quotas/
# The URL linked by the "Support" link in the "Help" menu.
# support_url: https://galaxyproject.org/support/
# The URL linked by the "How to Cite Galaxy" link in the "Help" menu.
#citation_url: https://galaxyproject.org/citing-galaxy
# The URL linked by the "Galaxy Version" link in the "Help" menu.
#release_doc_base_url: https://docs.galaxyproject.org/en/release_
# The URL linked by the "Videos" link in the "Help" menu.
#screencasts_url: https://www.youtube.com/c/galaxyproject
# The URL linked by the "Terms and Conditions" link in the "Help"
# menu, as well as on the user registration and login forms and in the
# activation emails.
# terms_url: https://usegalaxy.eu/terms
# Serve static content, which must be enabled if you're not serving it
# via a proxy server. These options should be self explanatory and so
# are not documented individually. You can use these paths (or ones
# in the proxy server) to point to your own styles.
#static_enabled: true