aboutsummaryrefslogtreecommitdiff
path: root/gn3/genodb.py
diff options
context:
space:
mode:
authorArun Isaac2022-06-20 14:00:18 +0530
committerArun Isaac2022-06-20 14:05:31 +0530
commit7b694ff847aa84a548a63549d6b77662a4ab923c (patch)
tree49e24436566c9a8b6070a24660d8ff69498b4b99 /gn3/genodb.py
parent89764d9abb42f0bad7f4403e827a0434d1a6c31e (diff)
downloadgenenetwork3-7b694ff847aa84a548a63549d6b77662a4ab923c.tar.gz
gn3: genodb: Match class and function names of GenotypeMatrix.
* gn3/genodb.py (GenotypeMatrix): Match class and function names.
Diffstat (limited to 'gn3/genodb.py')
-rw-r--r--gn3/genodb.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn3/genodb.py b/gn3/genodb.py
index 7255d6e..e4f26b6 100644
--- a/gn3/genodb.py
+++ b/gn3/genodb.py
@@ -29,7 +29,7 @@ import numpy as np
# pylint: disable=invalid-name,redefined-builtin
GenotypeDatabase = namedtuple('GenotypeDatabase', 'txn hash_length')
-GenotypeMatrix = namedtuple('Matrix', 'array transpose')
+GenotypeMatrix = namedtuple('GenotypeMatrix', 'array transpose')
@contextmanager
def open(path):