aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCalvin Morrison <mutantturkey@gmail.com>2014-06-25 13:39:35 -0400
committerCalvin Morrison <mutantturkey@gmail.com>2014-06-25 13:39:35 -0400
commit722d816b4a1c67bfcb590ab805c907a96bc3f984 (patch)
tree920fb95d2f15bf6a572d02d38bee8396b8a671fc
parent2fca8ab9cf3e399e1f30c2f180bc8bd8f36c1f14 (diff)
make that a float
-rwxr-xr-xsrc/select_mers.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/select_mers.py b/src/select_mers.py
index ceec4a0..5086e7c 100755
--- a/src/select_mers.py
+++ b/src/select_mers.py
@@ -28,7 +28,7 @@ def main():
# copy in our foreground mers and counts into mers dictionary
for line in fg_count_fh:
(mer, count) = line.split()
- mers[mer] = [float(count), 1]
+ mers[mer] = [float(count), 1.0]
for line in bg_count_fh: