diff options
author | zsloan | 2021-04-29 16:43:44 -0500 |
---|---|---|
committer | GitHub | 2021-04-29 16:43:44 -0500 |
commit | 72248f8474400a4f27717bda9309e95d1b1bae57 (patch) | |
tree | 44998fd1b561e1f4fde3edbc7bc5d375b003b91f /wqflask/utility/genofile_parser.py | |
parent | 02184d2e867e7d14a825c739d55eb00c9aa142b7 (diff) | |
parent | 4c8c5390bdba594c217d7ca0114a80a6b3634e24 (diff) | |
download | genenetwork2-72248f8474400a4f27717bda9309e95d1b1bae57.tar.gz |
Merge branch 'testing' into bug/network_graph_fixes
Diffstat (limited to 'wqflask/utility/genofile_parser.py')
-rw-r--r-- | wqflask/utility/genofile_parser.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wqflask/utility/genofile_parser.py b/wqflask/utility/genofile_parser.py index 0b736176..f8e96d19 100644 --- a/wqflask/utility/genofile_parser.py +++ b/wqflask/utility/genofile_parser.py @@ -12,7 +12,7 @@ import simplejson as json from pprint import pformat as pf -class Marker(object): +class Marker: def __init__(self): self.name = None self.chr = None @@ -21,7 +21,7 @@ class Marker(object): self.genotypes = [] -class ConvertGenoFile(object): +class ConvertGenoFile: def __init__(self, input_file): self.mb_exists = False |