Skip to content

Commit

Permalink
fix small error in fix-pcrPrimerPositionsInInput (#313)
Browse files Browse the repository at this point in the history
  • Loading branch information
manulera authored Dec 5, 2024
1 parent 94d1d16 commit 9939ef5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/store/cloning_utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ export function pcrPrimerPositionsInInput(source, sequenceData) {

fwd.end -= 1;
rvs.end -= 1;
if (source.assembly[1].forward_orientation) {
if (!source.assembly[1].reverse_complemented) {
fwd.strand = 1;
rvs.strand = -1;
return [fwd, rvs];
Expand Down

0 comments on commit 9939ef5

Please sign in to comment.