aboutsummaryrefslogtreecommitdiff
path: root/wqflask
diff options
context:
space:
mode:
authorPjotr Prins2015-03-15 14:41:14 +0300
committerPjotr Prins2015-03-15 14:41:14 +0300
commitdbc048f06a50837f59ce4d2ee7cfe84ab8e6062f (patch)
treec98b073eff80ee9f92f7fd9165f6842640c34e04 /wqflask
parent31dc2a62727d14e0eab154a1e2400fd7cf587b42 (diff)
downloadgenenetwork2-dbc048f06a50837f59ce4d2ee7cfe84ab8e6062f.tar.gz
Comment
Diffstat (limited to 'wqflask')
-rw-r--r--wqflask/wqflask/my_pylmm/pyLMM/lmm.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/wqflask/wqflask/my_pylmm/pyLMM/lmm.py b/wqflask/wqflask/my_pylmm/pyLMM/lmm.py
index 5aa27106..1fa7a895 100644
--- a/wqflask/wqflask/my_pylmm/pyLMM/lmm.py
+++ b/wqflask/wqflask/my_pylmm/pyLMM/lmm.py
@@ -334,7 +334,7 @@ def calculate_kinship_new(genotype_matrix, temp_data=None):
inds (columns) by snps (rows).
"""
G = np.apply_along_axis( genotype.normalize, axis=0, arr=genotype_matrix)
- return kinship(G.T),G
+ return kinship(G.T),G # G gets transposed, we'll turn this into an iterator (FIXME)
def calculate_kinship_old(genotype_matrix, temp_data=None):
"""