Skip to content

Commit 34288ff

Browse files
committed
Resolve conflicts
2 parents fc1ceae + ce7d8ea commit 34288ff

File tree

7 files changed

+7
-12
lines changed

7 files changed

+7
-12
lines changed

grim/conf/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@
2525

2626
__author__ = """Martin Maiers"""
2727
__email__ = '[email protected]'
28-
__version__ = '0.0.6'
28+
__version__ = '0.0.7'

grim/imputation/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222

2323
__author__ = """Martin Maiers"""
2424
__email__ = '[email protected]'
25-
__version__ = '0.0.6'
25+
__version__ = '0.0.7'

grim/imputation/graph_generation/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222

2323
__author__ = """Martin Maiers"""
2424
__email__ = '[email protected]'
25-
__version__ = '0.0.6'
25+
__version__ = '0.0.7'

grim/imputation/imputegl/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@
2424

2525
__author__ = """Martin Maiers"""
2626
__email__ = '[email protected]'
27-
__version__ = '0.0.6'
27+
__version__ = '0.0.7'

grim/imputation/imputegl/impute.py

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -119,12 +119,7 @@ def clean_up_gl(gl):
119119

120120

121121
class Imputation(object):
122-
__slots__ = 'logger', 'verbose', 'populations', 'netGraph', 'priorMatrix', 'full_hapl', 'index_dict', 'full_loci', \
123-
'factor', '_factor_missing_data', 'cypher', 'cypher_plan_b', 'matrix_planb', 'count_by_prob', \
124-
'number_of_options_threshold', 'plan', 'option_1', 'option_2', \
125-
'haplotypes_number_in_phase', 'save_space_mode', 'nodes_for_plan_A', 'unk_priors'
126-
127-
def __init__(self, net=None,config=None, count_by_prob=None, verbose=False):
122+
def __init__(self, net=None, config=None, count_by_prob=None, verbose=False):
128123
"""Constructor
129124
Intialize an instance of `Imputation` with a py2neo graph
130125
and a `CypherQuery` object.

grim/imputation/imputegl/networkx_graph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def __init__(self, config):
1818
self.full_loci = config["full_loci"]
1919
self.nodes_plan_a, self.nodes_plan_b = [], []
2020
if config["nodes_for_plan_A"]:
21-
path = '/'.join(config["node_file"].split('/')[:-1])
21+
path = ("/").join(config["node_file"].split("/")[:-1])
2222

2323
# bug: dies if file doesn't exist
2424
# bug: list_f doesn't exist

grim/validation/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222

2323
__author__ = """Martin Maiers"""
2424
__email__ = '[email protected]'
25-
__version__ = '0.0.6'
25+
__version__ = '0.0.7'

0 commit comments

Comments
 (0)