Skip to content

Commit

Permalink
fix a debugging message about commas
Browse files Browse the repository at this point in the history
  • Loading branch information
hyphaltip committed Feb 13, 2022
1 parent b78d9f5 commit 97200ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions AAFTF/sourpurge.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 97200ae

Please sign in to comment.