Skip to content

Commit bf1390f

Browse files
committed
Contig stitcher: remove hanging comma in the code
1 parent 8e904ca commit bf1390f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

micall/core/contig_stitcher.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -444,7 +444,7 @@ def stitch_2_contigs(left, right):
444444

445445
# Log it.
446446
average_concordance = sum(concordance) / (len(concordance) or 1)
447-
concordance_str = ', '.join(map(lambda x: str(round(x, 2)), concordance)),
447+
concordance_str = ', '.join(map(lambda x: str(round(x, 2)), concordance))
448448
cut_point_location_scaled = max_concordance_index / (((len(concordance) or 1) - 1) or 1)
449449
logger.debug("Created overlap contigs %r at %s and %r at %s based on parts of %r and %r, with avg. concordance %s%%, cut point at %s%%, and full concordance [%s].",
450450
left_overlap_take.name, left_overlap.alignment, right_overlap_take.name, right_overlap_take.alignment,

0 commit comments

Comments
 (0)