# Run a couple of simple sanity check tests.
include ../../../inc/common.mk

test: freqTest noGTest

mkdirs: 
	${MKDIR} output

freqTest: mkdirs
	../faRandomize input/freqTest.fa output/freqTest.fa -seed=10
	diff expected/freqTest.gold.fa output/freqTest.fa

noGTest: mkdirs
	../faRandomize input/noGTest.fa output/noGTest.fa -seed=10
	diff expected/noGTest.gold.fa output/noGTest.fa

clean: 
	rm -rf output

