diff options
| author | Alexander_Kabui | 2024-12-13 15:17:01 +0300 |
|---|---|---|
| committer | BonfaceKilz | 2024-12-13 15:22:20 +0300 |
| commit | 4d6f612ca9b8625a7c872a5d35287eb4932336a0 (patch) | |
| tree | 28371e34dc352e57aa970ae4d2083547fb3b8c10 | |
| parent | 6af4f70055e088530b4cdbdc47b2589046d00984 (diff) | |
| download | genenetwork3-4d6f612ca9b8625a7c872a5d35287eb4932336a0.tar.gz | |
Fix pylint error line too long.
| -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 |
