Skip to content

Commit

Permalink
Update CRISPRessoPooledCORE.py
Browse files Browse the repository at this point in the history
Fix debug statement
  • Loading branch information
kclem committed Jun 29, 2021
1 parent 9bc9b99 commit b859435
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion CRISPResso2/CRISPRessoPooledCORE.py
Original file line number Diff line number Diff line change
Expand Up @@ -681,7 +681,8 @@ def main():
for bam_line in bam_iter:
bam_line_els = bam_line.split('\t')
if len(bam_line_els) < 9:
print('ERROR GOT BAM LINE : ' + bam_line + ' with els: ' + str(bam_line_els))
if args.debug:
info('ERROR got unexpected line from bam: ' + bam_line + ' with els: ' + str(bam_line_els))
continue
line_chr = bam_line_els[2]

Expand Down

0 comments on commit b859435

Please sign in to comment.