diff options
Diffstat (limited to 'wk6/pset')
-rw-r--r-- | wk6/pset/dna/dna.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/wk6/pset/dna/dna.py b/wk6/pset/dna/dna.py index 5526859..0fc8545 100644 --- a/wk6/pset/dna/dna.py +++ b/wk6/pset/dna/dna.py @@ -25,10 +25,12 @@ def main(): rows.append(row) # TODO: Read DNA sequence file into a variable + sequence = '' with open(argv[1]) as file: - + sequence = sequence.join(file.readlines()) # TODO: Find longest match of each STR in DNA sequence + # # TODO: Check database for matching profiles |