Skip to content

Commit

Permalink
Merge pull request #298 from UC-Davis-molecular-computing/297-fix-oxv…
Browse files Browse the repository at this point in the history
…iew-export-exception

fixes #297: fix oxView export exception on Loopouts
  • Loading branch information
dave-doty committed Mar 28, 2024
2 parents f1ebd2e + e5572ad commit ee6e32e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scadnano/scadnano.py
Original file line number Diff line number Diff line change
Expand Up @@ -9141,8 +9141,7 @@ def _convert_design_to_oxdna_system(design: Design) -> _OxdnaSystem:
elif isinstance(domain, Loopout):
# we place the loopout nucleotides at temporary nonsense positions and orientations
# these will be updated later, for now we just need the base
for _ in range(domain.length):
base = seq[i]
for base in seq:
center = _OxdnaVector()
normal = _OxdnaVector(0, -1, 0)
forward = _OxdnaVector(0, 0, 1)
Expand Down

0 comments on commit ee6e32e

Please sign in to comment.