diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2014-08-15 12:33:46 -0400 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2014-08-15 12:33:46 -0400 |
commit | 8d13725703ef9856d99fa0d0cda76f96f0892095 (patch) | |
tree | 6c21d82155a78b397fabc75fe4d200cde9da672c /src | |
parent | d4ec5459d0fc141d20a4bbbf0a7dc40742e0372f (diff) |
fix syntax error
Diffstat (limited to 'src')
-rwxr-xr-x | src/score_mers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/score_mers.py b/src/score_mers.py index 65e7dc1..7cb4fe1 100755 --- a/src/score_mers.py +++ b/src/score_mers.py @@ -354,7 +354,7 @@ def score(combination): bg_ratio = (bg_genome_length / bg_counts) - if(bg_ratio < min_bg_ratio) + if bg_ratio < min_bg_ratio: return 3 nb_primers = len(combination) |