Skip to content

Commit

Permalink
bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
jodyphelan committed Nov 21, 2024
1 parent 459c655 commit e23c6d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pathogenprofiler/barcode.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def barcode(mutations,barcode_bed: str,snps_file=None) -> List[BarcodeResult]:
continue
# if number of barcoding positions > 5 and there are less than 5% of possible positions with alternate
if len(barcode_support[l])>5 and num_positions_with_alt<=0.10*len(barcode_support[l]):
logging.debug("Number of positions with alternate <10% for %s" % l)
logging.debug("Number of positions with alternate < 10 percent for %s" % l)
continue

barcode_pos_reads = sum([x[1] for x in barcode_support[l]])
Expand Down

0 comments on commit e23c6d9

Please sign in to comment.