Skip to content

Commit

Permalink
update the uncompressed read scanner to allow it to handle maybe tokens
Browse files Browse the repository at this point in the history
  • Loading branch information
bobcheng15 committed May 23, 2024
1 parent 96cbffb commit 269ac20
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions sam/sim/src/rd_scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,11 @@ def update(self):
self.curr_crd = stkn
self.curr_ref = stkn
return
elif is_0tkn(self.curr_in_ref):
self.curr_crd = ''
self.curr_ref = ''
self.emit_tkn = True
return
else:
self.curr_crd = 0
self.curr_ref = self.curr_crd + (self.curr_in_ref * self.meta_dim)
Expand Down

0 comments on commit 269ac20

Please sign in to comment.