Mercurial > repos > recetox > msmetaenhancer
diff msmetaenhancer_wrapper.py @ 13:f4a90c68e2de draft default tip
planemo upload for repository https://github.com/RECETOX/galaxytools/tree/master/tools/msmetaenhancer commit 1d1ecf792f5ea1c8a8f443dd1c3f55c810c5b00d
author | recetox |
---|---|
date | Mon, 27 May 2024 12:40:12 +0000 |
parents | 25319f346ad4 |
children |
line wrap: on
line diff
--- a/msmetaenhancer_wrapper.py Thu Jun 22 14:10:33 2023 +0000 +++ b/msmetaenhancer_wrapper.py Mon May 27 12:40:12 2024 +0000 @@ -56,7 +56,10 @@ if args.file_format == 'xlsx': handle_xlsx_file(app, args.output_file) else: - app.save_data(args.output_file, file_format=args.file_format) + if args.file_format == 'csv': + app.save_data(args.output_file, file_format="tsv") + else: + app.save_data(args.output_file, file_format=args.file_format) return 0