diff options
author | Calvin Morrison <mutantturkey@gmail.com> | 2014-08-22 17:39:55 -0400 |
---|---|---|
committer | Calvin Morrison <mutantturkey@gmail.com> | 2014-08-22 17:39:55 -0400 |
commit | a125839a498f2d259cf778ff77c9874ce54532c1 (patch) | |
tree | 2996f89018be84ded11395f81a3e69496315be61 /src | |
parent | 4894930ddd83ce7165ea43f19cb52169d431324f (diff) | |
parent | 4567b1f4d9b7ac9e48fb37de48586751acdba6cf (diff) |
Merge branch 'master' of github.com:mutantturkey/SelectiveWholeGenomeAmplification
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) |