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/maintenance/geno_to_json.py | |
parent | 02184d2e867e7d14a825c739d55eb00c9aa142b7 (diff) | |
parent | 4c8c5390bdba594c217d7ca0114a80a6b3634e24 (diff) | |
download | genenetwork2-72248f8474400a4f27717bda9309e95d1b1bae57.tar.gz |
Merge branch 'testing' into bug/network_graph_fixes
Diffstat (limited to 'wqflask/maintenance/geno_to_json.py')
-rw-r--r-- | wqflask/maintenance/geno_to_json.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/wqflask/maintenance/geno_to_json.py b/wqflask/maintenance/geno_to_json.py index 7e7fd241..f5f7e0e7 100644 --- a/wqflask/maintenance/geno_to_json.py +++ b/wqflask/maintenance/geno_to_json.py @@ -29,7 +29,7 @@ class EmptyConfigurations(Exception): pass -class Marker(object): +class Marker: def __init__(self): self.name = None self.chr = None @@ -37,7 +37,7 @@ class Marker(object): self.Mb = None self.genotypes = [] -class ConvertGenoFile(object): +class ConvertGenoFile: def __init__(self, input_file, output_file): |