From 97200aedc4a0f849c35c0cebe639354a54bebd28 Mon Sep 17 00:00:00 2001 From: Jason Stajich Date: Sun, 13 Feb 2022 14:11:55 -0800 Subject: [PATCH] fix a debugging message about commas --- AAFTF/sourpurge.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AAFTF/sourpurge.py b/AAFTF/sourpurge.py index 0452590..aacd16b 100644 --- a/AAFTF/sourpurge.py +++ b/AAFTF/sourpurge.py @@ -195,8 +195,8 @@ def run(parser,args): format(len(Contigs2Drop), min_coverage, args.mincovpct)) if args.debug: - print('Contigs dropped due to coverage: {:,}'.format(','.join(Contigs2Drop))) - print('Contigs dropped due to taxonomy: {:,}'.format(','.join(Tax2Drop))) + print('Contigs dropped due to coverage: {:}'.format(','.join(Contigs2Drop))) + print('Contigs dropped due to taxonomy: {:}'.format(','.join(Tax2Drop))) DropFinal = Contigs2Drop + Tax2Drop DropFinal = set(DropFinal)