Skip to content

Commit

Permalink
README.md updated
Browse files Browse the repository at this point in the history
  • Loading branch information
AHReccese committed Jan 15, 2025
1 parent 744b95e commit 06e4bd6
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,20 @@
>>> primer1.single_runs
{'A': 2, 'T': 0, 'C': 0, 'G': 2}
```
#### Double run length
```pycon
>>> primer1.double_runs
{'AT': 0, 'AG': 4, 'AC': 0, 'TA': 0, 'TG': 0, 'TC': 0, 'GA': 5, 'GT': 0, 'GC': 0, 'CA': 0, 'CT': 0, 'CG': 0}
```
#### Repeats
```pycon
>>> primer1.repeats(sequence="GG", consecutive=False)
4
```
```pycon
>>> primer1.repeats(sequence="GG", consecutive=True)
0
```
#### Melting temperature
```pycon
>>> primer1.melting_temperature()
Expand Down

0 comments on commit 06e4bd6

Please sign in to comment.