From 8d13725703ef9856d99fa0d0cda76f96f0892095 Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Fri, 15 Aug 2014 12:33:46 -0400 Subject: fix syntax error --- src/score_mers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- cgit v1.2.1 From 4567b1f4d9b7ac9e48fb37de48586751acdba6cf Mon Sep 17 00:00:00 2001 From: Calvin Morrison Date: Fri, 15 Aug 2014 12:34:12 -0400 Subject: add max bg mers to makefile --- Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile b/Makefile index 634b9ee..34b9b60 100644 --- a/Makefile +++ b/Makefile @@ -36,6 +36,7 @@ install: all install -c src/score_wrapper.sh $(DEST) install -c src/filter_melting_temperature.py $(DEST) install -c src/filter_max_consecutive_binding.py $(DEST) + install -c src/filter_max_bg_mers.py $(DEST) install -c src/filter_average_binding.py $(DEST) install -c src/remove_mers.py $(DEST) install -c src/remove_mers_from_file.py $(DEST) -- cgit v1.2.1