Skip to content

Commit

Permalink
Reverse quality string in force_merge_pairs
Browse files Browse the repository at this point in the history
  • Loading branch information
Snicker7 committed Mar 22, 2023
1 parent 587a56e commit b074699
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CRISPResso2/CRISPRessoShared.py
Original file line number Diff line number Diff line change
Expand Up @@ -1191,7 +1191,7 @@ def force_merge_pairs(r1_filename, r2_filename, output_filename):
id2 = f2.readline()
seq2 = reverse_complement(f2.readline().strip()) + "\n"
plus2 = f2.readline()
qual2 = f2.readline()
qual2 = f2.readline().strip()[::-1]

f_out.write(id1 + seq1 + seq2 + plus1 + qual1 + qual2)

Expand Down

0 comments on commit b074699

Please sign in to comment.