Skip to content

Commit

Permalink
Merge branch 'add_kmers_and_hashes' of github.com:dib-lab/oxli into a…
Browse files Browse the repository at this point in the history
…dd_kmers_and_hashes
  • Loading branch information
ctb committed Sep 25, 2024
2 parents 91a1260 + ec51e8b commit 529a3a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/python/tests/test_kmers_and_hashes.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def test_bad_kmers_raise_error():
seq = "acxttg"
cg = oxli.KmerCountTable(ksize=4)

with pytest.raises(ValueError, match='bad k-mer at position 0: ACXT'):
with pytest.raises(ValueError, match="bad k-mer at position 0: ACXT"):
x = cg.kmers_and_hashes(seq, False)


Expand All @@ -86,7 +86,7 @@ def test_bad_kmers_raise_error_2():
seq = "aattxttgg"
cg = oxli.KmerCountTable(ksize=4)

with pytest.raises(ValueError, match='bad k-mer at position 1: ATTX'):
with pytest.raises(ValueError, match="bad k-mer at position 1: ATTX"):
x = cg.kmers_and_hashes(seq, False)


Expand Down

0 comments on commit 529a3a5

Please sign in to comment.