diff options
author | Arun Isaac | 2022-06-20 14:00:18 +0530 |
---|---|---|
committer | Arun Isaac | 2022-06-20 14:05:31 +0530 |
commit | 7b694ff847aa84a548a63549d6b77662a4ab923c (patch) | |
tree | 49e24436566c9a8b6070a24660d8ff69498b4b99 | |
parent | 89764d9abb42f0bad7f4403e827a0434d1a6c31e (diff) | |
download | genenetwork3-7b694ff847aa84a548a63549d6b77662a4ab923c.tar.gz |
gn3: genodb: Match class and function names of GenotypeMatrix.
* gn3/genodb.py (GenotypeMatrix): Match class and function names.
-rw-r--r-- | gn3/genodb.py | 2 |
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): |