Skip to content
Snippets Groups Projects
Commit f36b2872 authored by breakthewall's avatar breakthewall
Browse files

fix(Main.py): args.filename

parent 714f3873
Branches
No related tags found
No related merge requests found
...@@ -14,7 +14,7 @@ def main(): ...@@ -14,7 +14,7 @@ def main():
if args.filename: if args.filename:
# Read file # Read file
lineList = [line.rstrip('\n') for line in open("plasmid_8k.fasta")] lineList = [line.rstrip('\n') for line in open(args.filename)]
# Formatting # Formatting
seq = ''.join(lineList[1:]) seq = ''.join(lineList[1:])
traj.compute(seq, rot_table) traj.compute(seq, rot_table)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment