diff options
Diffstat (limited to 'gn3')
-rw-r--r-- | gn3/genodb.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gn3/genodb.py b/gn3/genodb.py index d8b906f..89a6509 100644 --- a/gn3/genodb.py +++ b/gn3/genodb.py @@ -22,7 +22,6 @@ class GenotypeDatabase: class Matrix(): def __init__(self, db, hash): - # TODO: Decide on endianness. self.nrows = int.from_bytes(db.get_metadata(hash, 'nrows'), byteorder='little') self.ncols = int.from_bytes(db.get_metadata(hash, 'ncols'), byteorder='little') self.row_pointers = db.get(hash) |