We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GC clamp is the presence of a guanine (G) or cytosine (C) base in the last 5 bases of a primer.
>>> from opr import Primer >>> p1 = Primer("ATCG") >>> print(p1.gc_clamp) 0 >>> p2 = Primer("ATCGG") >>> print(p2.gc_clamp) 3
ℹ️ The GC clamp is only applicable to primers that are longer than 4 nucleotides.
No response
Test case: https://www.oligoevaluator.com/ShowToolServlet?TYPE=ANALYSIS More info: https://toptipbio.com/gc-clamp-pcr/
The text was updated successfully, but these errors were encountered:
sadrasabouri
Successfully merging a pull request may close this issue.
Describe the feature you want to add
GC clamp is the presence of a guanine (G) or cytosine (C) base in the last 5 bases of a primer.
Describe your proposed solution
ℹ️ The GC clamp is only applicable to primers that are longer than 4 nucleotides.
Describe alternatives you've considered, if relevant
No response
Additional context
Test case: https://www.oligoevaluator.com/ShowToolServlet?TYPE=ANALYSIS
More info: https://toptipbio.com/gc-clamp-pcr/
The text was updated successfully, but these errors were encountered: