Skip to content

Commit

Permalink
added test for PCR on circular template
Browse files Browse the repository at this point in the history
  • Loading branch information
BjornFJohansson committed Mar 25, 2024
1 parent 847e185 commit e32977f
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion tests/test_module_amplicon.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,15 @@ def test_amplicon():
|||||||||||||||||||||||
3atgtgagtggcagatagtaatag...gctgacatagtagactatcgtg5"""

ctemplate = template.looped()
cann = Anneal((p1, p2), ctemplate)

cprod = cann.products[0]
assert repr(cprod) == "Amplicon(57)"

import textwrap

assert prod.figure() == textwrap.dedent(fig)
assert prod.figure() == cprod.figure() == textwrap.dedent(fig)

# assert prod.program() == prod.taq_program()

Expand Down

0 comments on commit e32977f

Please sign in to comment.