aboutsummaryrefslogtreecommitdiff
path: root/gn3/db
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2022-03-11 12:09:22 +0300
committerFrederick Muriuki Muriithi2022-03-11 12:09:22 +0300
commit08a27b65b91cec12ec2a44945090ca8b9fabd8dd (patch)
tree8c56e52ed54eac07b6e490b7c1693baa21183837 /gn3/db
parent9691e225724e041997c74f8665dcbfa12bb1c579 (diff)
downloadgenenetwork3-08a27b65b91cec12ec2a44945090ca8b9fabd8dd.tar.gz
Fix typing errors
Diffstat (limited to 'gn3/db')
-rw-r--r--gn3/db/genotypes.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gn3/db/genotypes.py b/gn3/db/genotypes.py
index 0e19a5f..6f867c7 100644
--- a/gn3/db/genotypes.py
+++ b/gn3/db/genotypes.py
@@ -50,8 +50,8 @@ def __load_genotype_samples_from_geno(genotype_filename: str):
gzipped_filename = f"{genotype_filename}.gz"
if os.path.isfile(gzipped_filename):
- with gzip.open(gzipped_filename) as genofile:
- rows = __remove_comments_and_empty_lines__(genofile.readlines())
+ with gzip.open(gzipped_filename) as gz_genofile:
+ rows = __remove_comments_and_empty_lines__(gz_genofile.readlines())
else:
with open(genotype_filename, encoding="utf8") as genofile:
rows = __remove_comments_and_empty_lines__(genofile.readlines())