]> git.donarmstrong.com Git - lib.git/blob - templates/makefiles/gene_information.mk
add some makefile templates
[lib.git] / templates / makefiles / gene_information.mk
1 GENE_INFO ?=$(shell dir=./; while [ "$$( (cd $${dir} >/dev/null; pwd) )" != "/" ]; do if [ -e "$${dir}bin/gene_info" ]; then echo $${dir}bin/gene_info; break; fi; dir="$${dir}../"; done;)
2
3 GENE_INFO_OPTIONS ?= --splicing
4
5 gene_information.txt: gene_list.txt $(GENE_INFO) 
6                 $(GENE_INFO) $(GENE_INFO_OPTIONS) $< > $@;