diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2014-03-05 15:57:31 -0500 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2014-03-05 15:57:31 -0500 |
commit | f2f8522d856d1807750ebf2d897d547734e9c55e (patch) | |
tree | db41c22d76396fe031f81855a8dc843cbb5a1e26 | |
parent | 18812c4de93a8ac7646323789f23b103330946f4 (diff) |
should work:
-rwxr-xr-x | src/score_mers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/score_mers.py b/src/score_mers.py index 6a6a652..bf7aa16 100755 --- a/src/score_mers.py +++ b/src/score_mers.py @@ -120,9 +120,9 @@ def score_mers(selected): scores_it = p.imap_unordered(score, combinations(selected, select_n), chunksize=8192) for score_res in scores_it: if score_res is not None: - combination, score, fg_mean_dist, fg_variance_dist, bg_mean_dist, bg_variance_dist = score_res + combination, scores, fg_mean_dist, fg_variance_dist, bg_mean_dist, bg_variance_dist = score_res fh.write(str(combination) + "\t"); - fh.write(str(score) + "\t"); + fh.write(str(scores) + "\t"); fh.write(str(fg_mean_dist) + "\t"); fh.write(str(fg_variance_dist) + "\t"); fh.write(str(bg_mean_dist) + "\t"); |