From 2486e8d533cad6545afee8e5c82c0cf7ad2c34c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=A9r=C3=A9nice=20Batut?= Date: Tue, 31 Oct 2023 15:56:26 +0100 Subject: [PATCH] Fix format col --- 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 bf814057..a7bfb5be 100644 --- a/bin/extract_galaxy_tools.py +++ b/bin/extract_galaxy_tools.py @@ -420,7 +420,7 @@ def filter_tools(tools: List[Dict], ts_cat: List[str], excluded_tools: List[str] continue repo = get_github_repo(r, g) tools += parse_tools(repo) - export_tools(tools, args.all_tools, format_col=True) + export_tools(tools, args.all_tools, format_list_col=True) print() elif args.command == "filtertools": tools = pd.read_csv(Path(args.tools), sep="\t", keep_default_na=False).to_dict("records")