aboutsummaryrefslogtreecommitdiff
path: root/src/score_mers.py
diff options
context:
space:
mode:
authorCalvin Morrison <mutantturkey@gmail.com>2014-03-05 15:57:31 -0500
committerCalvin Morrison <mutantturkey@gmail.com>2014-03-05 15:57:31 -0500
commitf2f8522d856d1807750ebf2d897d547734e9c55e (patch)
treedb41c22d76396fe031f81855a8dc843cbb5a1e26 /src/score_mers.py
parent18812c4de93a8ac7646323789f23b103330946f4 (diff)
should work:
Diffstat (limited to 'src/score_mers.py')
-rwxr-xr-xsrc/score_mers.py4
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");