Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
willdumm committed Jan 16, 2025
1 parent dde535e commit 8492e99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/test_sequences.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def test_strip_unrecognized_tokens_from_series():
newseqs = strip_unrecognized_tokens_from_series(df["seq"], 21)
for seq, nseq in zip(df["seq"], newseqs):
for token in RESERVED_TOKENS:
seq = seq.replace(token, "N")
seq = seq.replace(token, "")
assert nseq == seq


Expand Down

0 comments on commit 8492e99

Please sign in to comment.