Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
manulera committed Feb 2, 2024
1 parent 0a58133 commit 11a5668
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/pydna/dseq.py
Original file line number Diff line number Diff line change
Expand Up @@ -1499,8 +1499,8 @@ def get_cutsite_pairs(self, cutsites):
Special cases:
- Single cutsite on circular sequence: returns a pair where both cutsites are the same
- Linear sequence:
- creates a new left_cut on the first pair to represent the left edge of the sequence as it is.
- creates a new right_cut on the last pair to represent the right edge of the sequence as it is.
- creates a new left_cut on the first pair equal to `None` to represent the left edge of the sequence as it is.
- creates a new right_cut on the last pair equal to `None` to represent the right edge of the sequence as it is.
- In both new cuts, the enzyme is set to None to indicate that the cut is not made by an enzyme.
Parameters
Expand All @@ -1509,7 +1509,7 @@ def get_cutsite_pairs(self, cutsites):
Returns
-------
list[tuple[tuple[tuple[int,int], _RestrictionType]],tuple[tuple[int,int], _RestrictionType]]
list[tuple[tuple[tuple[int,int], _RestrictionType]|None],tuple[tuple[int,int], _RestrictionType]|None]
Examples
--------
Expand Down

0 comments on commit 11a5668

Please sign in to comment.