diff --git a/src/read_sequencing.py b/src/read_sequencing.py index e411e107b97409bdf9cbc81da5dbcbf5e582fb4d..29ba72ee860ef5c11251a830907aeddcd4f0e38e 100644 --- a/src/read_sequencing.py +++ b/src/read_sequencing.py @@ -34,13 +34,14 @@ def read_sequencing( # Import classes from random import choices, randrange import numpy as np + from typing import List # Read data from terminal fragment file # Store fragments in a list f = open(frag_file_name, "r") frag_line = f.readline() - frag_list = [] + frag_list = [] # type: List[str] frag_str = "" while frag_line != "": # To stop when the end of file is reached