From 8d230aebbcb6bfffc87f77c5b6c65b4c7b52cb10 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marie=20Joss=C3=A9?= <84919248+Marie59@users.noreply.github.com> Date: Thu, 5 Oct 2023 15:51:00 +0200 Subject: [PATCH] add earth system tools --- templates/galaxy/config/global_host_filters.py.j2 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/templates/galaxy/config/global_host_filters.py.j2 b/templates/galaxy/config/global_host_filters.py.j2 index 8b391570a..5ca29d6c9 100644 --- a/templates/galaxy/config/global_host_filters.py.j2 +++ b/templates/galaxy/config/global_host_filters.py.j2 @@ -37,6 +37,8 @@ def per_host_tool_labels( context, label ): return label.id in valid_labels if "aqua.usegalaxy.eu" in host: return label.id in valid_labels + if "earth-system.usegalaxy.eu" in host: + return label.id in valid_labels return True @@ -92,6 +94,7 @@ DOMAIN_SECTIONS = { 'annotation': GENERAL_NGS_SECTIONS + ['annotation', 'apollo', 'ncbi_blast', 'assembly', 'variant_calling', 'fetch_sequences___alignments', 'ontology', 'emboss', 'evolution', 'genome_diversity', 'multiple_alignments', 'graph_display_data'], 'materials': ['muon_spectroscopy'], 'aqua': ["climate_analysis", "gis_data_handling", "graph_display_data", "interactivetools", "machine_learning"], + 'earth-system': ["interactivetools"], }