Skip to content

Commit

Permalink
fixed docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
manulera committed Nov 10, 2023
1 parent 6492441 commit 4c99232
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pydna/dseq.py
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ def from_full_sequence_and_overhangs(cls, full_sequence: str, crick_ovhg: int, w
Examples
--------
```
>>> Dseq.from_full_sequence_and_overhangs('AAAAAA', crick_ovhg=2, watson_ovhg=2)
Dseq(-6)
AAAA
Expand All @@ -472,7 +472,7 @@ def from_full_sequence_and_overhangs(cls, full_sequence: str, crick_ovhg: int, w
Dseq(-6)
AAAA
TTTT
```
"""
full_sequence_rev = str(Dseq(full_sequence).reverse_complement())
watson = full_sequence
Expand Down

0 comments on commit 4c99232

Please sign in to comment.