Skip to content

Commit

Permalink
Identical and revcomp supplied primers give only a warning
Browse files Browse the repository at this point in the history
  • Loading branch information
untergasser committed Aug 5, 2024
1 parent e26ace3 commit 8cc57fe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libprimer3.cc
Original file line number Diff line number Diff line change
Expand Up @@ -7345,10 +7345,10 @@ _pr_data_control(const p3_global_settings *pa,
"Specified right primer not in Included Region");
else if (sa->left_input) {
if (strcmp(sa->left_input, s1) == 0)
pr_append_new_chunk(nonfatal_err,
pr_append_new_chunk(warning,
"Specified left and right primer are reverse complementary");
if (strcmp(sa->left_input, sa->right_input) == 0)
pr_append_new_chunk(nonfatal_err,
pr_append_new_chunk(warning,
"Specified left and right primer are identical");
}
}
Expand Down

0 comments on commit 8cc57fe

Please sign in to comment.