guidescan enumerate has a --start flag, too. We didn't add this to the snakemake rule before, so the bam files appended the pam to the end of the sequences as default.
For example, the correct sequence of a target should be TTTNGGCCTAATACTAAGCCTAAG, but the bam files generated from snakemake write it as GGCCTAATACTAAGCCTAAGTTTN.
guidescan enumerate
has a--start
flag, too. We didn't add this to the snakemake rule before, so thebam
files appended the pam to the end of the sequences as default.For example, the correct sequence of a target should be
TTTNGGCCTAATACTAAGCCTAAG
, but thebam
files generated from snakemake write it asGGCCTAATACTAAGCCTAAGTTTN
.This PR made a correction for this.