Skip to content

Commit

Permalink
Update scadnano.py
Browse files Browse the repository at this point in the history
  • Loading branch information
dave-doty committed Mar 28, 2024
1 parent ee6e32e commit a220c32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scadnano/scadnano.py
Original file line number Diff line number Diff line change
@@ -7840,8 +7840,8 @@ def to_oxview_format(self, warn_duplicate_strand_names: bool = True,
for d1, d2 in zip(d1range, d2range):
if ((sc_strand1.dna_sequence is not None) and
(sc_strand2.dna_sequence is not None) and
(sc_strand1.dna_sequence[d1] != "?") and
(sc_strand2.dna_sequence[d2] != "?") and
(sc_strand1.dna_sequence[d1] != DNA_base_wildcard) and
(sc_strand2.dna_sequence[d2] != DNA_base_wildcard) and
(wc(sc_strand1.dna_sequence[d1]) != sc_strand2.dna_sequence[d2])):
continue

0 comments on commit a220c32

Please sign in to comment.