From c0ed3745dcdaacd2010b86c3afec0cd7241905bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Plaza=20O=C3=B1ate?= Date: Wed, 12 Apr 2023 10:55:03 +0200 Subject: [PATCH] Fix typo in merge_metaphlan_tables.py --- metaphlan/utils/merge_metaphlan_tables.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metaphlan/utils/merge_metaphlan_tables.py b/metaphlan/utils/merge_metaphlan_tables.py index 0bbec0c..91864d4 100755 --- a/metaphlan/utils/merge_metaphlan_tables.py +++ b/metaphlan/utils/merge_metaphlan_tables.py @@ -67,7 +67,7 @@ def main( ): return if args.o and os.path.exists(args.o) and not args.overwrite: - print('merge_metaphlan_tables: output file "{}" exists, specify the --overwrite param to ovrewrite it!'.format(args.o)) + print('merge_metaphlan_tables: output file "{}" exists, specify the --overwrite param to overwrite it!'.format(args.o)) return merge(args.aistms, open(args.o, 'w') if args.o else sys.stdout, args.gtdb_profiles)