Commit 04d1f005 authored by Gustaf Ahdritz's avatar Gustaf Ahdritz
Browse files

Fix undefined reference

parent 42a89f8c
...@@ -308,7 +308,7 @@ def main(args): ...@@ -308,7 +308,7 @@ def main(args):
os.makedirs(prediction_dir, exist_ok=True) os.makedirs(prediction_dir, exist_ok=True)
for fasta_file in os.listdir(args.fasta_dir): for fasta_file in os.listdir(args.fasta_dir):
with open(os.path.join(fasta_dir, fasta_file), "r") as fp: with open(os.path.join(args.fasta_dir, fasta_file), "r") as fp:
data = fp.read() data = fp.read()
tags, seqs = parse_fasta(data) tags, seqs = parse_fasta(data)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment