diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-06 03:10:52 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-06 03:10:52 +0000 |
commit | 33b8bf5424d2c85f6d7f099aa750611bb451b49d (patch) | |
tree | 3b20154f981ced430966b0e59423115b3cb6a739 /wk6/pset/dna/dna.py | |
parent | 96ee66c5a4ba46e3887db1b80ebafdf3f09bf772 (diff) |
Sun, May 5, 2024, 8:10 PM -07:00
Diffstat (limited to 'wk6/pset/dna/dna.py')
-rw-r--r-- | wk6/pset/dna/dna.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/wk6/pset/dna/dna.py b/wk6/pset/dna/dna.py index 4fd757a..424e4da 100644 --- a/wk6/pset/dna/dna.py +++ b/wk6/pset/dna/dna.py @@ -17,6 +17,7 @@ def main(): return +# Given entire DNA sequence and an STR (ACTG) as inputs, outputs the longest repitition def longest_match(sequence, subsequence): """Returns length of longest run of subsequence in sequence.""" |