diff options
Diffstat (limited to 'gn3/computations/rqtl.py')
| -rw-r--r-- | gn3/computations/rqtl.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gn3/computations/rqtl.py b/gn3/computations/rqtl.py index 9c1c7cd..74a8f05 100644 --- a/gn3/computations/rqtl.py +++ b/gn3/computations/rqtl.py @@ -314,7 +314,8 @@ def process_perm_output(file_name: str) -> Tuple[List, float, float]: perm_results = [] outdir = os.path.join(get_tmpdir(), "gn3") - with open(os.path.join(outdir, file_name), "r", encoding="utf-8") as the_file: + with open(os.path.join(outdir, file_name), + "r", encoding="utf-8") as the_file: for i, line in enumerate(the_file): if i == 0: # Skip header line |
