diff options
author | zsloan | 2015-03-17 19:24:40 +0000 |
---|---|---|
committer | zsloan | 2015-03-17 19:24:40 +0000 |
commit | b4a92b6f9ef51c9ad32028720717c79dfb807054 (patch) | |
tree | 74a9e34e6fe6de44602d5face4029f2074c97a5b /wqflask | |
parent | 667a8441c6f549dd9820838ea9fd8d77368dd767 (diff) | |
download | genenetwork2-b4a92b6f9ef51c9ad32028720717c79dfb807054.tar.gz |
Moved print statement for non-humans only inside if statement
Diffstat (limited to 'wqflask')
-rw-r--r-- | wqflask/wqflask/my_pylmm/pyLMM/lmm.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/wqflask/wqflask/my_pylmm/pyLMM/lmm.py b/wqflask/wqflask/my_pylmm/pyLMM/lmm.py index 99a5a940..a9744e72 100644 --- a/wqflask/wqflask/my_pylmm/pyLMM/lmm.py +++ b/wqflask/wqflask/my_pylmm/pyLMM/lmm.py @@ -733,12 +733,13 @@ def gn2_redis(key,species): tempdata = temp_data.TempData(params['temp_uuid']) - print('kinship', np.array(params['kinship_matrix'])) + print('pheno', np.array(params['pheno_vector'])) # sys.exit(1) if species == "human" : + print('kinship', np.array(params['kinship_matrix'])) ps, ts = run_human(pheno_vector = np.array(params['pheno_vector']), covariate_matrix = np.array(params['covariate_matrix']), plink_input_file = params['input_file_name'], |