diff options
Diffstat (limited to 'wk6/pset')
-rw-r--r-- | wk6/pset/dna/dna.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/wk6/pset/dna/dna.py b/wk6/pset/dna/dna.py index e653f75..8c65afb 100644 --- a/wk6/pset/dna/dna.py +++ b/wk6/pset/dna/dna.py @@ -34,9 +34,12 @@ def main(): sequence = sequence.join(file.readlines()) # TODO: Find longest match of each STR in DNA sequence + matches = [] for i in len(fields): if not fields[i] == 'name': - longest_match(sequence, fields[i]) + matches[i] = longest_match(sequence, fields[i]) + + print(matches) # TODO: Check database for matching profiles |