Skip to content

Commit

Permalink
fixes #304: Typo in set_dna_sequence comment
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-doty committed Jul 2, 2024
1 parent 3600d1a commit e8905fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scadnano/scadnano.py
Original file line number Diff line number Diff line change
Expand Up @@ -4102,7 +4102,7 @@ def set_dna_sequence(self, sequence: str) -> None:
`sequence`, after all whitespace is removed, must be exactly the same length as
:py:meth:`Strand.dna_length`.
Wildcard symbols (:py:const:`DNA_case_wildcard`) are allowed to leave part of the DNA unassigned.
Wildcard symbols (:py:const:`DNA_base_wildcard`) are allowed to leave part of the DNA unassigned.
"""
trimmed_seq = _remove_whitespace_and_uppercase(sequence)
if len(trimmed_seq) != self.dna_length():
Expand Down

0 comments on commit e8905fa

Please sign in to comment.