Skip to content

Commit

Permalink
0 is an acceptable qwc
Browse files Browse the repository at this point in the history
  • Loading branch information
mbowcut2 committed Mar 22, 2024
1 parent f243d85 commit ffc8c32
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRISPResso2/CRISPRessoCORE.py
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ def get_cloned_include_idxs_from_quant_window_coordinates(quant_window_coordinat
for coord in split_quant_window_coordinates(quant_window_coordinates):
include_idxs.extend(idxs[coord[0]:coord[1] + 1])

return list(filter(lambda x: x > 0, include_idxs))
return list(filter(lambda x: x >= 0, include_idxs))


def get_pe_scaffold_search(prime_edited_ref_sequence, prime_editing_pegRNA_extension_seq, prime_editing_pegRNA_scaffold_seq, prime_editing_pegRNA_scaffold_min_match_length):
Expand Down

0 comments on commit ffc8c32

Please sign in to comment.