aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorCalvin Morrison <mutantturkey@gmail.com>2014-03-25 16:33:36 -0400
committerCalvin Morrison <mutantturkey@gmail.com>2014-03-25 16:33:36 -0400
commit06fa848b90982ddcd4308bb88d70a0d5f11f785b (patch)
tree472f8e8675a3b01060159bcf24cd1b2c35fb5d9e /Makefile
parent55d58f92e388bbed44963565c5073c444ffa60b2 (diff)
add average binding filter
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7d5b400..1f72fa1 100644
--- a/Makefile
+++ b/Makefile
@@ -20,15 +20,19 @@ clean:
rm -vf bin/* -Rv
install: all
+ # c tools
install -c bin/strstream $(DEST)
install -c bin/filter_melting_range $(DEST)
install -c bin/strstreamone $(DEST)
install -c bin/sequence_end_points $(DEST)
+ # bash scripts
install -c SelectiveGenomeAmplification $(DEST)
install -c SelectiveGenomeAmplificationUI $(DEST)
+ # python scripts
install -c src/select_mers.py $(DEST)
install -c src/score_mers.py $(DEST)
install -c src/score_wrapper.sh $(DEST)
- install -c src/below_melting_temperature.py $(DEST)
+ install -c src/filter_melting_temperature.py $(DEST)
install -c src/filter_max_consecutive_binding.py $(DEST)
+ install -c src/filter_average_binding.py $(DEST)