Skip to content

Commit

Permalink
small test for to_dsiupac method
Browse files Browse the repository at this point in the history
  • Loading branch information
BjornFJohansson committed Nov 13, 2024
1 parent 0dbbea8 commit f02d317
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/test_module_dseq.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,13 @@
import pytest


def test_dsiupac():
from pydna.dseq import Dseq

assert Dseq.from_dsiupac("PEXIaaaQFZJ").to_dsiupac() == "PEXIaaaQFZJ"
assert Dseq.from_dsiupac("QFZJaaaPEXI").to_dsiupac() == "QFZJaaaPEXI"


def test_cut1():
from pydna.dseq import Dseq

Expand Down

0 comments on commit f02d317

Please sign in to comment.