aboutsummaryrefslogtreecommitdiff
path: root/gn3/computations
diff options
context:
space:
mode:
authorMunyoki Kilyungi2024-09-12 18:47:03 +0300
committerBonfaceKilz2024-09-12 18:50:25 +0300
commit6e23a22c4a60c9238b23d38f586f3de2aa9048f9 (patch)
treec1ee1ef15614aa3325a6bd2c861cea0f141d5d21 /gn3/computations
parent82e5a814b5e0e855c467aa30d773d0927f0520ec (diff)
downloadgenenetwork3-6e23a22c4a60c9238b23d38f586f3de2aa9048f9.tar.gz
Fix pylint errors.
Signed-off-by: Munyoki Kilyungi <me@bonfacemunyoki.com>
Diffstat (limited to 'gn3/computations')
-rw-r--r--gn3/computations/gemma.py4
-rw-r--r--gn3/computations/rqtl.py2
2 files changed, 1 insertions, 5 deletions
diff --git a/gn3/computations/gemma.py b/gn3/computations/gemma.py
index 577d8e8..6c53ecc 100644
--- a/gn3/computations/gemma.py
+++ b/gn3/computations/gemma.py
@@ -1,14 +1,12 @@
"""Procedures related gemma computations"""
-import errno
import os
from base64 import b64encode
from hashlib import md5
from typing import Optional, Dict
from typing import List
-from typing import ValuesView
from gn3.commands import compose_gemma_cmd
-from gn3.fs_helpers import get_hash_of_files, assert_paths_exist
+from gn3.fs_helpers import get_hash_of_files
def generate_hash_of_string(unhashed_str: str) -> str:
diff --git a/gn3/computations/rqtl.py b/gn3/computations/rqtl.py
index 0b8c23d..16f1398 100644
--- a/gn3/computations/rqtl.py
+++ b/gn3/computations/rqtl.py
@@ -1,7 +1,5 @@
"""Procedures related to R/qtl computations"""
import os
-import sys
-import logging
from bisect import bisect
from typing import Dict, List, Tuple, Union