install:
	python filter.py > 1.txt
	python lineremove.py > 2.txt
	python freqcount.py > 3.txt
	python specialremove.py > filteredcorpus.txt
	
clean:
	rm 1.txt
	rm 2.txt
	rm 3.txt
