From b25c68846189972ffce49ef0cadea5b09f7e79a2 Mon Sep 17 00:00:00 2001 From: paulzierep Date: Tue, 4 Jun 2024 16:00:59 +0200 Subject: [PATCH] Update bin/extract_galaxy_tools.py MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Bérénice Batut --- bin/extract_galaxy_tools.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/extract_galaxy_tools.py b/bin/extract_galaxy_tools.py index 669ab5e0..91797203 100644 --- a/bin/extract_galaxy_tools.py +++ b/bin/extract_galaxy_tools.py @@ -733,7 +733,7 @@ def reduce_ontology_terms(terms: List, ontology: Any) -> List: # add availability for all star servers for name, url in USEGALAXY_SERVER_URLS.items(): - tool[f"Tools available on {name}"] = check_tools_on_servers(tool["Galaxy tool ids"], url) + tool[f"Available on {name}"] = check_tools_on_servers(tool["Galaxy tool ids"], url) export_tools_to_json(tools, args.all_tools_json) export_tools_to_tsv(tools, args.all_tools, format_list_col=True, add_usage_stats=True)