diff options
author | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-06 06:16:34 +0000 |
---|---|---|
committer | Fudgerboy <91767657+Fudgerboy@users.noreply.github.com> | 2024-05-06 06:16:34 +0000 |
commit | b879a2914e6c82e4136fcbaf1272bf0efa57d6bd (patch) | |
tree | f8808728ee562123c2b1c0fc456ae5a284a997c6 | |
parent | 938f5d9c7ba09863dc68882f4920c7c93fc5afae (diff) |
Sun, May 5, 2024, 11:16 PM -07:00
-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 |