diff options
Diffstat (limited to 'wk6/pset/dna/dna.py')
-rw-r--r-- | wk6/pset/dna/dna.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wk6/pset/dna/dna.py b/wk6/pset/dna/dna.py index db684b8..5526859 100644 --- a/wk6/pset/dna/dna.py +++ b/wk6/pset/dna/dna.py @@ -19,13 +19,13 @@ def main(): # TODO: Read database file into a variable rows = [] - with open() as file: + with open(argv[0]) as file: reader = csv.DictReader(file) for row in reader: rows.append(row) # TODO: Read DNA sequence file into a variable - with open() as file: + with open(argv[1]) as file: # TODO: Find longest match of each STR in DNA sequence |