Skip to content

Commit

Permalink
fix typo in pam search
Browse files Browse the repository at this point in the history
  • Loading branch information
samuelecancellieri committed Sep 6, 2021
1 parent 2b32008 commit 122ddbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sourceCode/CRISPRofiler/pam_searching.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -625,7 +625,7 @@ void searchPAMonGenome(string pam_sequence, int pam_len, string genome_sequence,
{
if ((nt <= (genome_sequence.length() - (pam_len + max_bulges)))) //save the pam position only if possible for a guide to attach that position(avoid out of bound)
{
pamindicesreverse.push_back(-nt);
pamindicesreverse.push_back(nt);
}
}
if (found_negative)
Expand Down

0 comments on commit 122ddbd

Please sign in to comment.