You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There seems to be an issue with indelgen in that the potential indel profiles that are generated are not consistent with one between a sequence and it's reverse complement.
I have tried this for multiple examples. I would expect the set of returned indels to be the same. Maybe you know what the issue is here? I am not familiar with C++ myself, so it will take me a while to familiarise myself enough to be able to debug this problem
The text was updated successfully, but these errors were encountered:
Apologies, I think there is probably an off-by-one bug somewhere in the reverse code for indelgen but I never used it in that direction and didn't see a need to so I never debugged that and unfortunately don't have time to at the minute. The reverse part was necessary for the read mapping in our experiment, but not for the indel generation for making predictions, where I always took reverse complement of the sequence first.
I will add an error warning not to use REVERSE for indelgen, if you want to generate indels for a reverse strand just take the reverse complement of the sequence and use FORWARD.
Hi @felicityallen,
There seems to be an issue with
indelgen
in that the potential indel profiles that are generated are not consistent with one between a sequence and it's reverse complement.Consider the following example:
When we run
indelgen
on this sequence, we get the following possible inserts:If we take the reverse complement of Oligo_2, and take the PAM location as 79 (sequence length) - 49 = 30, as below
we get a different set of indels:
I have tried this for multiple examples. I would expect the set of returned indels to be the same. Maybe you know what the issue is here? I am not familiar with C++ myself, so it will take me a while to familiarise myself enough to be able to debug this problem
The text was updated successfully, but these errors were encountered: